swift-linechart icon indicating copy to clipboard operation
swift-linechart copied to clipboard

hide grid and axis

Open pareekkhushboo77 opened this issue 8 years ago • 1 comments

is there a way to hide all other views except line graph, please guide..

pareekkhushboo77 avatar Aug 15 '16 06:08 pareekkhushboo77

@pareekkhushboo77 Better late then never but you can!

Example

let lines = LineChart()
lines.y.grid.visible = false
lines.y.labels.visible = false
lines.y.axis.visible = false
lines.x.grid.visible = false
lines.x.labels.visible = false
lines.x.axis.visible = false

hiddevdploeg avatar May 03 '17 07:05 hiddevdploeg