File tree Expand file tree Collapse file tree 1 file changed +29
-1
lines changed
AAInfographics/AAOptionsModel Expand file tree Collapse file tree 1 file changed +29
-1
lines changed Original file line number Diff line number Diff line change @@ -46,8 +46,11 @@ public class AABoxplot: AAObject {
4646 public var stemWidth : Float ?
4747 public var whiskerColor : String ?
4848 public var whiskerDashStyle : String ?
49- public var whiskerLength : String ?
49+ public var whiskerLength : Any ?
5050 public var whiskerWidth : Float ?
51+ public var grouping : Bool ?
52+ public var pointPadding : Float ?
53+ public var pointWidth : Float ?
5154
5255 @discardableResult
5356 public func boxDashStyle( _ prop: AAChartLineDashStyleType ? ) -> AABoxplot {
@@ -132,14 +135,39 @@ public class AABoxplot: AAObject {
132135 whiskerLength = prop
133136 return self
134137 }
138+
139+ @discardableResult
140+ public func whiskerLength( _ prop: Float ? ) -> AABoxplot {
141+ whiskerLength = prop
142+ return self
143+ }
135144
136145 @discardableResult
137146 public func whiskerWidth( _ prop: Float ? ) -> AABoxplot {
138147 whiskerWidth = prop
139148 return self
140149 }
141150
151+ @discardableResult
152+ public func grouping( _ prop: Bool ? ) -> AABoxplot {
153+ grouping = prop
154+ return self
155+ }
156+
157+ @discardableResult
158+ public func pointPadding( _ prop: Float ? ) -> AABoxplot {
159+ pointPadding = prop
160+ return self
161+ }
162+
163+ @discardableResult
164+ public func pointWidth( _ prop: Float ? ) -> AABoxplot {
165+ pointWidth = prop
166+ return self
167+ }
168+
142169 public override init ( ) {
143170
144171 }
172+
145173}
You can’t perform that action at this time.
0 commit comments