- var plotBands: Array<AAPlotBandsElement>? = null
- var plotLines: Array<AAPlotLinesElement>? = null
- var categories: Array<String>? = null
- var reversed: Boolean? = null
- var gridLineWidth: Float? = null// y 轴网格线宽度
- var gridLineColor: String? = null // y 轴网格线颜色
- var gridLineDashStyle: String? = null //网格线线条样式,所有可用的线条样式参考:Highcharts线条样式
- var alternateGridColor: String? = null //backcolor of every other grid line area
- var gridLineInterpolation: String? =
+ var title: AATitle? = null
+ var plotBands: Array<AAPlotBandsElement>? = null
+ var plotLines: Array<AAPlotLinesElement>? = null
+ var categories: Array<String>? = null
+ var reversed: Boolean? = null
+ var gridLineWidth: Float? = null// y 轴网格线宽度
+ var gridLineColor: String? = null // y 轴网格线颜色
+ var gridLineDashStyle: String? = null //网格线线条样式,所有可用的线条样式参考:Highcharts线条样式
+ var alternateGridColor: String? = null //backcolor of every other grid line area
+ var gridLineInterpolation: String? =
null //Polar charts only. Whether the grid lines should draw as a polygon with straight lines between categories, or as circles. Can be either circle or polygon. 默认是:null.
null //Polar charts only. Whether the grid lines should draw as a polygon with straight lines between categories, or as circles. Can be either circle or polygon. 默认是:null.
- var labels: AALabels? = null//用于设置 y 轴文字相关的
- var lineWidth: Float? = null // y 轴线宽度
- var lineColor: String? = null // y 轴线颜色
- var off: Float? = null // y 轴线水平偏移
- var allowDecimals: Boolean? = null //y轴是否允许显示小数
- var max: Float? = null //y轴最大值
- var min: Float? = null //y轴最小值(设置为0就不会有负数)
+ var labels: AALabels? = null//用于设置 y 轴文字相关的
+ var lineWidth: Float? = null // y 轴线宽度
+ var lineColor: String? = null // y 轴线颜色
+ var off: Float? = null // y 轴线水平偏移
+ var allowDecimals: Boolean? = null //y轴是否允许显示小数
+ var max: Float? = null //y轴最大值
+ var min: Float? = null //y轴最小值(设置为0就不会有负数)
+
// var minPadding: //Padding of the min value relative to the length of the axis. A padding of 0.05 will make a 100px axis 5px longer. This is useful when you don't want the lowest data value to appear on the edge of the plot area. 默认是:0.05.
// var minPadding: //Padding of the min value relative to the length of the axis. A padding of 0.05 will make a 100px axis 5px longer. This is useful when you don't want the lowest data value to appear on the edge of the plot area. 默认是:0.05.