You can hide zero or any other value on the axis by customizing the number format of axis’ ticks. Please, see previous question for details.
For example, your conversion code might look like:
func valueAxisDataSourceDouble(value: Double, toStringForValueAxis axis: NChartValueAxis!) -> String! {
return value == 0.0 ? "" : "\(value)"
}
Comments
No comments yet.
Please log in to place a comment.