androidhighchartsandroid-graphview

How to implement bar chart or bar graph like below in android


enter image description here

I want to implement bar chart like below where the visible range of bar chart is scrollable. Please help me out. Thanks.


Solution

  • You can use Highstock with column series type:

    Highcharts.stockChart('container', {
      series: [{
        type: 'column',
        data: [...]
      }],
    
      navigator: {
        series: {
          type: 'column'
        }
      }
    });
    

    Live demo: http://jsfiddle.net/BlackLabel/6m4e8x0y/4889/

    API Reference: https://api.highcharts.com/highstock/navigator.series.type