We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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:
chartView.(rightAxis/leftAxis/xAxis).grid*
Sorry, something went wrong.
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
leftAxis.gridLineDashLengths = @[@2];
i forgot to set this property.
No branches or pull requests
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: