Update AASeries.swift
This commit is contained in:
parent
26c783cdef
commit
393c0af19e
|
@ -36,10 +36,6 @@ public class AASeries: AAObject {
|
||||||
public var borderColor: String? //The border color, It is only valid for column, bar, pie, columnrange, pyramid and funnel chart types
|
public var borderColor: String? //The border color, It is only valid for column, bar, pie, columnrange, pyramid and funnel chart types
|
||||||
public var borderWidth: Float? //The border width, It is only valid for column, bar, pie, columnrange, pyramid and funnel chart types
|
public var borderWidth: Float? //The border width, It is only valid for column, bar, pie, columnrange, pyramid and funnel chart types
|
||||||
public var borderRadius: Float? //The corner radius of the border surrounding each column or bar.
|
public var borderRadius: Float? //The corner radius of the border surrounding each column or bar.
|
||||||
public var borderRadiusTopLeft: Any?
|
|
||||||
public var borderRadiusTopRight: Any?
|
|
||||||
public var borderRadiusBottomLeft: Any?
|
|
||||||
public var borderRadiusBottomRight: Any?
|
|
||||||
public var marker: AAMarker?
|
public var marker: AAMarker?
|
||||||
public var stacking: String?
|
public var stacking: String?
|
||||||
public var animation: Any? //AAAnimation | Bool
|
public var animation: Any? //AAAnimation | Bool
|
||||||
|
@ -82,30 +78,6 @@ public class AASeries: AAObject {
|
||||||
return self
|
return self
|
||||||
}
|
}
|
||||||
|
|
||||||
@discardableResult
|
|
||||||
public func borderRadiusTopLeft(_ prop: Any?) -> Self {
|
|
||||||
borderRadiusTopLeft = prop
|
|
||||||
return self
|
|
||||||
}
|
|
||||||
|
|
||||||
@discardableResult
|
|
||||||
public func borderRadiusTopRight(_ prop: Any?) -> Self {
|
|
||||||
borderRadiusTopRight = prop
|
|
||||||
return self
|
|
||||||
}
|
|
||||||
|
|
||||||
@discardableResult
|
|
||||||
public func borderRadiusBottomLeft(_ prop: Any?) -> Self {
|
|
||||||
borderRadiusBottomLeft = prop
|
|
||||||
return self
|
|
||||||
}
|
|
||||||
|
|
||||||
@discardableResult
|
|
||||||
public func borderRadiusBottomRight(_ prop: Any?) -> Self {
|
|
||||||
borderRadiusBottomRight = prop
|
|
||||||
return self
|
|
||||||
}
|
|
||||||
|
|
||||||
@discardableResult
|
@discardableResult
|
||||||
public func marker(_ prop: AAMarker?) -> Self {
|
public func marker(_ prop: AAMarker?) -> Self {
|
||||||
marker = prop
|
marker = prop
|
||||||
|
|
Loading…
Reference in New Issue