|
@@ -15,9 +15,9 @@ class AASeries {
|
|
var borderColor //The border color, It is only valid for column, bar, pie, columnrange, pyramid and funnel chart types
|
|
var borderColor //The border color, It is only valid for column, bar, pie, columnrange, pyramid and funnel chart types
|
|
: String? = null
|
|
: String? = null
|
|
var borderWidth //The border width, It is only valid for column, bar, pie, columnrange, pyramid and funnel chart types
|
|
var borderWidth //The border width, It is only valid for column, bar, pie, columnrange, pyramid and funnel chart types
|
|
- : Float? = null
|
|
|
|
|
|
+ : Number? = null
|
|
var borderRadius //The corner radius of the border surrounding each column or bar.
|
|
var borderRadius //The corner radius of the border surrounding each column or bar.
|
|
- : Float? = null
|
|
|
|
|
|
+ : Number? = null
|
|
var borderRadiusTopLeft: Any? = null
|
|
var borderRadiusTopLeft: Any? = null
|
|
var borderRadiusTopRight: Any? = null
|
|
var borderRadiusTopRight: Any? = null
|
|
var borderRadiusBottomLeft: Any? = null
|
|
var borderRadiusBottomLeft: Any? = null
|
|
@@ -35,19 +35,19 @@ class AASeries {
|
|
var pointInterval: Int? = null
|
|
var pointInterval: Int? = null
|
|
var pointIntervalUnit: String? = null
|
|
var pointIntervalUnit: String? = null
|
|
var pointPlacement: Any? = null
|
|
var pointPlacement: Any? = null
|
|
- var pointStart: Float? = null
|
|
|
|
|
|
+ var pointStart: Number? = null
|
|
|
|
|
|
fun borderColor(prop: String?): AASeries {
|
|
fun borderColor(prop: String?): AASeries {
|
|
borderColor = prop
|
|
borderColor = prop
|
|
return this
|
|
return this
|
|
}
|
|
}
|
|
|
|
|
|
- fun borderWidth(prop: Float?): AASeries {
|
|
|
|
|
|
+ fun borderWidth(prop: Number?): AASeries {
|
|
borderWidth = prop
|
|
borderWidth = prop
|
|
return this
|
|
return this
|
|
}
|
|
}
|
|
|
|
|
|
- fun borderRadius(prop: Float?): AASeries {
|
|
|
|
|
|
+ fun borderRadius(prop: Number?): AASeries {
|
|
borderRadius = prop
|
|
borderRadius = prop
|
|
return this
|
|
return this
|
|
}
|
|
}
|
|
@@ -137,7 +137,7 @@ class AASeries {
|
|
return this
|
|
return this
|
|
}
|
|
}
|
|
|
|
|
|
- fun pointStart(prop: Float): AASeries {
|
|
|
|
|
|
+ fun pointStart(prop: Number): AASeries {
|
|
pointStart = prop
|
|
pointStart = prop
|
|
return this
|
|
return this
|
|
}
|
|
}
|