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.31k stars 369 forks source link

disabling touch in Sparkline chart in android #211

Closed iamomidk closed 3 years ago

iamomidk commented 3 years ago

how to disable the touch input in Sparkline chart in android

Shestac92 commented 3 years ago

@iamomidk Can you specify what exactly actions do you want to prohibit? Showing the tooltip?

iamomidk commented 3 years ago

yes exactly.

Shestac92 commented 3 years ago

You can simply disable the tooltip like this:

        Sparkline chart = AnyChart.sparkline();
        chart.tooltip(false);