An An 2 years ago
parent
commit
a1238f9217

+ 12 - 0
charts/src/main/java/com/github/aachartmodel/aainfographics/aaoptionsmodel/AAStates.kt

@@ -28,6 +28,8 @@ class AAHover {
     var brightness: Float? = null
     var color: String? = null
     var halo: AAHalo? = null
+    var lineWidth: Number? = null
+    var lineWidthPlus: Number? = null
     fun borderColor(prop: String?): AAHover {
         borderColor = prop
         return this
@@ -47,6 +49,16 @@ class AAHover {
         halo = prop
         return this
     }
+
+    fun lineWidth(prop: Number?): AAHover {
+        lineWidth = prop
+        return this
+    }
+
+    fun lineWidthPlus(prop: Number?): AAHover {
+        lineWidthPlus = prop
+        return this
+    }
 }
 
 class AASelect {