You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -475,7 +475,7 @@ public var dataLabelsFontColor: String? //The data labels font color
475
475
publicvar dataLabelsFontSize: Float?//The data labels font size
476
476
publicvar dataLabelsFontWeight: AAChartFontWeightType?//The data labels font weight
477
477
publicvar xAxisLabelsEnabled: Bool?//Enable or disable the axis labels. Defaults to true
478
-
publicvar categories: Array<String>?//Set new categories for the axis
478
+
publicvar categories: [String]?//Set new categories for the axis
479
479
publicvar xAxisGridLineWidth: Float?//The width of the grid lines extending the ticks across the plot area.Defaults to 0
480
480
publicvar xAxisVisible: Bool?
481
481
publicvar xAxisTickInterval: Int?
@@ -490,8 +490,8 @@ public var yAxisAllowDecimals: Bool? //The y axis values label allow decimals
490
490
publicvar tooltipEnabled: Bool?
491
491
publicvar tooltipValueSuffix: String?
492
492
publicvar tooltipCrosshairs: Bool?
493
-
publicvar colorsTheme: Array<Any>?//An array containing the default colors for the chart's series. When all colors are used, new colors are pulled from the start again. Defaults to: ["#bb250c","#f67210","#fde680","#257679","#f1c6c5"]
494
-
publicvar series: Array<Any>?//An array of all the chart's series
493
+
publicvar colorsTheme: [Any]?//An array containing the default colors for the chart's series. When all colors are used, new colors are pulled from the start again. Defaults to: ["#bb250c","#f67210","#fde680","#257679","#f1c6c5"]
494
+
publicvar series: [Any]?//An array of all the chart's series
495
495
publicvar legendEnabled: Bool?//Enable or disable the legend. Defaults to true
496
496
publicvar backgroundColor: Any?//The background color or gradient for the outer chart area. Defaults to #FFFFFF
497
497
publicvar borderRadius: Int?//The corner radius of the outer chart border. Defaults to 0
0 commit comments