Skip to content

Commit

Permalink
Optimize details
Browse files Browse the repository at this point in the history
  • Loading branch information
AAChartModel committed Aug 24, 2020
1 parent dc56bfa commit 5acd19d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions AAInfographics/AAChartCreator/AAChartModel.swift
Expand Up @@ -175,8 +175,8 @@ public class AAChartModel: AAObject {
public var yAxisTitle: String? //The actual text of the axis title
public var yAxisLineWidth: Float? //The width of y axis line
public var yAxisGridLineWidth: Float? //The width of the grid lines extending the ticks across the plot area. Defaults to 1
public var yAxisMin: Double? //The y axis mini value
public var yAxisMax: Double? //The y axis max value
public var yAxisMin: Double? //The y axis mini value
public var yAxisMax: Double? //The y axis max value
public var yAxisAllowDecimals: Bool? //The y axis values label allow decimals or not
public var tooltipEnabled: Bool? //Show the tooltip or not
public var tooltipValueSuffix: String? //Custom tooltip value unit suffix
Expand Down
2 changes: 1 addition & 1 deletion CHINESE-README.md
Expand Up @@ -448,7 +448,7 @@ public var tooltipEnabled: Bool? //是否显示浮动提
public var tooltipValueSuffix: String? //浮动提示框单位后缀
public var tooltipCrosshairs: Bool? //是否显示准星线(默认显示)
public var colorsTheme: [Any]? //图表主题颜色数组
public var series: [AASeriesElement]? //图表的数据数组
public var series: [Any]? //图表的数据数组
public var legendEnabled: Bool? //是否显示图例
public var backgroundColor: Any? //图表背景色
public var borderRadius: Int? //柱状图长条图头部圆角半径(可用于设置头部的形状,仅对条形图,柱状图有效)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -475,7 +475,7 @@ public var dataLabelsFontColor: String? //The data labels font color
public var dataLabelsFontSize: Float? //The data labels font size
public var dataLabelsFontWeight: AAChartFontWeightType?//The data labels font weight
public var xAxisLabelsEnabled: Bool? //Enable or disable the axis labels. Defaults to true
public var categories: Array<String>? //Set new categories for the axis
public var categories: [String]? //Set new categories for the axis
public var xAxisGridLineWidth: Float? //The width of the grid lines extending the ticks across the plot area.Defaults to 0
public var xAxisVisible: Bool?
public var xAxisTickInterval: Int?
Expand All @@ -490,8 +490,8 @@ public var yAxisAllowDecimals: Bool? //The y axis values label allow decimals
public var tooltipEnabled: Bool?
public var tooltipValueSuffix: String?
public var tooltipCrosshairs: Bool?
public var 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"]
public var series: Array<Any>? //An array of all the chart's series
public var 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"]
public var series: [Any]? //An array of all the chart's series
public var legendEnabled: Bool? //Enable or disable the legend. Defaults to true
public var backgroundColor: Any? //The background color or gradient for the outer chart area. Defaults to #FFFFFF
public var borderRadius: Int? //The corner radius of the outer chart border. Defaults to 0
Expand Down
2 changes: 1 addition & 1 deletion TRADITIONAL-CHINESE-README.md
Expand Up @@ -433,7 +433,7 @@
public var tooltipValueSuffix: String? //浮動提示框單位後綴
public var tooltipCrosshairs: Bool? //是否顯示準星線(默認顯示)
public var colorsTheme: [Any]? //圖表主題顏色數組
public var series: [AASeriesElement]? //圖表的數據數組
public var series: [Any]? //圖表的數據數組
public var legendEnabled: Bool? //是否顯示圖例
public var backgroundColor: Any? //圖表背景色
public var borderRadius: Int? //柱狀圖長條圖頭部圓角半徑(可用於設置頭部的形狀,僅對條形圖,柱狀圖有效)
Expand Down

0 comments on commit 5acd19d

Please sign in to comment.