Răsfoiți Sursa

Update AASeriesElement.kt

An An 2 ani în urmă
părinte
comite
36fe780ad3

+ 6 - 0
charts/src/main/java/com/github/aachartmodel/aainfographics/aachartcreator/AASeriesElement.kt

@@ -76,6 +76,7 @@ class AASeriesElement {
     private var colorByPoint: Boolean? = null
     private var zIndex: Int? = null
     private var zones: Array<AAZonesElement>? = null
+    private var zoneAxis: String? = null
     private var shadow: AAShadow? = null
     private var stack: String? = null
     private var tooltip: AATooltip? = null
@@ -229,6 +230,11 @@ class AASeriesElement {
         return this
     }
 
+    fun zoneAxis(prop: String?): AASeriesElement {
+        zoneAxis = prop
+        return this
+    }
+
     fun shadow(prop: AAShadow?): AASeriesElement {
         shadow = prop
         return this