|
5 | 5 | import android.os.Bundle;
|
6 | 6 |
|
7 | 7 | 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; |
9 | 9 | import com.example.anan.chartcore_slim.AAChartCoreLib.AAChartEnum.AAChartStackingType;
|
10 | 10 | import com.example.anan.chartcore_slim.AAChartCoreLib.AAChartEnum.AAChartSymbolStyleType;
|
11 | 11 | import com.example.anan.chartcore_slim.AAChartCoreLib.AAChartEnum.AAChartSymbolType;
|
@@ -223,22 +223,22 @@ AAChartModel dashStyleTypeMixed() {
|
223 | 223 | new AASeriesElement()
|
224 | 224 | .name("Dash")
|
225 | 225 | .lineWidth(3f)
|
226 |
| - .dashStyle(AAChartLineDashSyleType.Dash) |
| 226 | + .dashStyle(AAChartLineDashStyleType.Dash) |
227 | 227 | .data(new Object[] {50, 320, 230, 370, 230, 400,320}),
|
228 | 228 | new AASeriesElement()
|
229 | 229 | .name("DashDot")
|
230 | 230 | .lineWidth(3f)
|
231 |
| - .dashStyle(AAChartLineDashSyleType.DashDot) |
| 231 | + .dashStyle(AAChartLineDashStyleType.DashDot) |
232 | 232 | .data(new Object[] {50, 320, 230, 370, 230, 400,320}),
|
233 | 233 | new AASeriesElement()
|
234 | 234 | .name("LongDash")
|
235 | 235 | .lineWidth(3f)
|
236 |
| - .dashStyle(AAChartLineDashSyleType.LongDash) |
| 236 | + .dashStyle(AAChartLineDashStyleType.LongDash) |
237 | 237 | .data(new Object[] {50, 320, 230, 370, 230, 400,320}),
|
238 | 238 | new AASeriesElement()
|
239 | 239 | .name("LongDashDot")
|
240 | 240 | .lineWidth(3f)
|
241 |
| - .dashStyle(AAChartLineDashSyleType.LongDashDot) |
| 241 | + .dashStyle(AAChartLineDashStyleType.LongDashDot) |
242 | 242 | .data(new Object[] {50, 320, 230, 370, 230, 400,320})
|
243 | 243 | ,
|
244 | 244 | });
|
|
0 commit comments