Skip to content

Commit df7d364

Browse files
committed
Update AASeriesElement.swift
1 parent d0f4691 commit df7d364

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

AAInfographics/AAChartCreator/AASeriesElement.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131
*/
3232

33+
//https://api.highcharts.com/highcharts/series
3334
public class AASeriesElement: AAObject {
3435
public var type: String? //A chart type series. If the type option is not specified, it is inherited from `chart.type`.
3536
public var name: String? //The name of the series as shown in the legend, tooltip etc.
@@ -370,6 +371,7 @@ public class AASeriesElement: AAObject {
370371
}
371372
}
372373

374+
//https://api.highcharts.com/highcharts/series.area.data
373375
public class AADataElement: AAObject {
374376
public var name: String?
375377
public var x: Float?
@@ -426,6 +428,7 @@ public class AADataElement: AAObject {
426428
}
427429
}
428430

431+
//https://api.highcharts.com/highcharts/series.area.shadow
429432
public class AAShadow: AAObject {
430433
public var color: String?
431434
public var offsetX: Float?
@@ -468,6 +471,7 @@ public class AAShadow: AAObject {
468471
}
469472
}
470473

474+
//https://api.highcharts.com/highcharts/series.area.zones
471475
public class AAZonesElement: AAObject {
472476
public var value: Double?
473477
public var color: Any?
@@ -503,6 +507,7 @@ public class AAZonesElement: AAObject {
503507
}
504508
}
505509

510+
//https://api.highcharts.com/highcharts/series.column.dataSorting
506511
public class AADataSorting: AAObject {
507512
public var enabled: Bool?
508513
public var matchByName: Bool?

0 commit comments

Comments
 (0)