|
@@ -10,6 +10,7 @@ package com.github.aachartmodel.aainfographics.aaoptionsmodel
|
|
|
|
|
|
class AAXAxis {
|
|
class AAXAxis {
|
|
var type: String? = null
|
|
var type: String? = null
|
|
|
|
+ var dateTimeLabelFormats: AADateTimeLabelFormats? = null
|
|
var plotBands: Array<AAPlotBandsElement>? = null
|
|
var plotBands: Array<AAPlotBandsElement>? = null
|
|
var plotLines: Array<AAPlotLinesElement>? = null
|
|
var plotLines: Array<AAPlotLinesElement>? = null
|
|
var categories: Array<String>? = null
|
|
var categories: Array<String>? = null
|
|
@@ -57,6 +58,11 @@ class AAXAxis {
|
|
return this
|
|
return this
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ fun dateTimeLabelFormats(prop: AADateTimeLabelFormats): AAXAxis {
|
|
|
|
+ dateTimeLabelFormats = prop
|
|
|
|
+ return this
|
|
|
|
+ }
|
|
|
|
+
|
|
fun plotBands(prop: Array<AAPlotBandsElement>): AAXAxis {
|
|
fun plotBands(prop: Array<AAPlotBandsElement>): AAXAxis {
|
|
plotBands = prop
|
|
plotBands = prop
|
|
return this
|
|
return this
|