Skip to content

Commit 0490322

Browse files
committed
Update AABoxplot.swift
1 parent a467bf7 commit 0490322

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

AAInfographics/AAOptionsModel/AABoxplot.swift

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)