|
@@ -27,6 +27,7 @@ enum class AAChartAxisType(val value: String) {
|
|
var min: Number? = null //坐标轴最小值(设置为0就不会有负数)
|
|
var min: Number? = null //坐标轴最小值(设置为0就不会有负数)
|
|
var minRange: Int? = null
|
|
var minRange: Int? = null
|
|
var minTickInterval: Int? = null //The minimum tick interval allowed in axis values. For example on zooming in on an axis with daily data, this can be used to prevent the axis from showing hours. Defaults to the closest distance between two points on the axis.
|
|
var minTickInterval: Int? = null //The minimum tick interval allowed in axis values. For example on zooming in on an axis with daily data, this can be used to prevent the axis from showing hours. Defaults to the closest distance between two points on the axis.
|
|
|
|
+ var minorTicks: Boolean? = null //是否显示副刻度
|
|
var minorGridLineColor: String? = null //Color of the minor, secondary grid lines.
|
|
var minorGridLineColor: String? = null //Color of the minor, secondary grid lines.
|
|
var minorGridLineDashStyle: String? = null //The dash or dot style of the minor grid lines.
|
|
var minorGridLineDashStyle: String? = null //The dash or dot style of the minor grid lines.
|
|
var minorGridLineWidth: Number? = null //Width of the minor, secondary grid lines.
|
|
var minorGridLineWidth: Number? = null //Width of the minor, secondary grid lines.
|
|
@@ -47,7 +48,7 @@ enum class AAChartAxisType(val value: String) {
|
|
var visible: Boolean? = null //用于设置坐标轴以及坐标轴文字是否显示
|
|
var visible: Boolean? = null //用于设置坐标轴以及坐标轴文字是否显示
|
|
var startOnTick: Boolean? = null //Whether to force the axis to start on a tick. Use this option with the minPadding option to control the axis start. 默认是:false.
|
|
var startOnTick: Boolean? = null //Whether to force the axis to start on a tick. Use this option with the minPadding option to control the axis start. 默认是:false.
|
|
var tickColor: String? = null //坐标轴轴线下方刻度线颜色
|
|
var tickColor: String? = null //坐标轴轴线下方刻度线颜色
|
|
- var tickInterval: Int? = null //坐标轴刻度点间隔数(设置每隔几个点显示一个 坐标轴的内容:
|
|
|
|
|
|
+ var tickInterval: Number? = null //坐标轴刻度点间隔数(设置每隔几个点显示一个 坐标轴的内容:
|
|
var tickmarkPlacement: String? = null //本参数只对分类轴有效。 当值为 on 时刻度线将在分类上方显示;当值为 between 时,刻度线将在两个分类中间显示。当 tickInterval 为 1 时,默认是 between,其他情况默认是 on。 默认是:null.
|
|
var tickmarkPlacement: String? = null //本参数只对分类轴有效。 当值为 on 时刻度线将在分类上方显示;当值为 between 时,刻度线将在两个分类中间显示。当 tickInterval 为 1 时,默认是 between,其他情况默认是 on。 默认是:null.
|
|
var tickWidth: Number? = null //坐标轴刻度线的宽度,设置为 0 时则不显示刻度线
|
|
var tickWidth: Number? = null //坐标轴刻度线的宽度,设置为 0 时则不显示刻度线
|
|
var tickLength: Number? = null //坐标轴刻度线的长度。 默认是:10.
|
|
var tickLength: Number? = null //坐标轴刻度线的长度。 默认是:10.
|