Skip to content

Commit c5c4dec

Browse files
committed
Correct word spelling error
1 parent 2b039f7 commit c5c4dec

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ChartCoreSlim/app/src/main/java/com/example/anan/chartcore_slim/ChartsDemo/MainContent/MixedChartActivity.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import android.os.Bundle;
66

77
import com.example.anan.chartcore_slim.AAChartCoreLib.AAChartConfiger.AAChartModel;
8-
import com.example.anan.chartcore_slim.AAChartCoreLib.AAChartEnum.AAChartLineDashSyleType;
8+
import com.example.anan.chartcore_slim.AAChartCoreLib.AAChartEnum.AAChartLineDashStyleType;
99
import com.example.anan.chartcore_slim.AAChartCoreLib.AAChartEnum.AAChartStackingType;
1010
import com.example.anan.chartcore_slim.AAChartCoreLib.AAChartEnum.AAChartSymbolStyleType;
1111
import com.example.anan.chartcore_slim.AAChartCoreLib.AAChartEnum.AAChartSymbolType;
@@ -223,22 +223,22 @@ AAChartModel dashStyleTypeMixed() {
223223
new AASeriesElement()
224224
.name("Dash")
225225
.lineWidth(3f)
226-
.dashStyle(AAChartLineDashSyleType.Dash)
226+
.dashStyle(AAChartLineDashStyleType.Dash)
227227
.data(new Object[] {50, 320, 230, 370, 230, 400,320}),
228228
new AASeriesElement()
229229
.name("DashDot")
230230
.lineWidth(3f)
231-
.dashStyle(AAChartLineDashSyleType.DashDot)
231+
.dashStyle(AAChartLineDashStyleType.DashDot)
232232
.data(new Object[] {50, 320, 230, 370, 230, 400,320}),
233233
new AASeriesElement()
234234
.name("LongDash")
235235
.lineWidth(3f)
236-
.dashStyle(AAChartLineDashSyleType.LongDash)
236+
.dashStyle(AAChartLineDashStyleType.LongDash)
237237
.data(new Object[] {50, 320, 230, 370, 230, 400,320}),
238238
new AASeriesElement()
239239
.name("LongDashDot")
240240
.lineWidth(3f)
241-
.dashStyle(AAChartLineDashSyleType.LongDashDot)
241+
.dashStyle(AAChartLineDashStyleType.LongDashDot)
242242
.data(new Object[] {50, 320, 230, 370, 230, 400,320})
243243
,
244244
});

0 commit comments

Comments
 (0)