-
-
Notifications
You must be signed in to change notification settings - Fork 6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to draw gridBackground by Dashed Line #1030
Comments
chartView.(rightAxis/leftAxis/xAxis).grid* |
defined as below: public var axisLineColor = NSUIColor.grayColor()
public var axisLineWidth = CGFloat(0.5)
public var axisLineDashPhase = CGFloat(0.0)
public var axisLineDashLengths: [CGFloat]!
public var gridColor = NSUIColor.grayColor().colorWithAlphaComponent(0.9)
public var gridLineWidth = CGFloat(0.5)
public var gridLineDashPhase = CGFloat(0.0)
public var gridLineDashLengths: [CGFloat]!
public var gridLineCap = CGLineCap.Butt
public var drawGridLinesEnabled = true
public var drawAxisLineEnabled = true |
i forgot to set this property. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I want to draw grid background by Dashed Line instead default line. Please help me to solve this issue
The text was updated successfully, but these errors were encountered: