AnyChart / AnyChart-Android

AnyChart Android Chart is an amazing data visualization library for easily creating interactive charts in Android apps. It runs on API 19+ (Android 4.4) and features dozens of built-in chart types.
2.29k stars 369 forks source link

Is there any way to remove the Y axis line but not the label? #245

Closed rezyfr closed 2 years ago

rezyfr commented 2 years ago

I wanna make a chart somehing like this (this is a mockup) image

is there anyway to remove the line to achieve something like that? thanks

Shestac92 commented 2 years ago

@rezyfr Try the code below

chart.yAxis(0).stroke("none");
rezyfr commented 2 years ago

Thanks