[Chartjs]-Android: WebView with JavaScript for Chart.js not working properly

4👍

This answer solved my chart not being drawn. Try to disable hardware acceleration rendering on the WebView:

webView.setLayerType(View.LAYER_TYPE_SOFTWARE, null);

Leave a comment