google / charts

https://pub.dev/packages/charts_flutter
Apache License 2.0
2.81k stars 1.2k forks source link

BarChart doesn’t display single horizontal bar when value is in the millions #782

Open oopcoders opened 2 years ago

oopcoders commented 2 years ago

The first row doesn't display single bar item. View a working example here https://jsfiddle.net/mharri117/zwycshvm/184/

  google.charts.load('current', {packages: ['corechart']});
  google.charts.setOnLoadCallback(drawChart);

  function drawChart() {
       var data = new google.visualization.DataTable();
        data.addColumn('string');
        data.addColumn('number');
        data.addColumn({ 'type': 'string', 'role': 'style' });
        data.addRows([
          ['name1',3442222,'color: #fcba03'],// This will not show the bar
          //['name2',34422,'color: #fcba03'],// uncomment this line and comment out above line and everything works fine
        ]);

      // Instantiate and draw the chart.
      var chart = new google.visualization.BarChart(document.getElementById('barChart'));
      chart.draw(data, null);
    }