This repository was archived by the owner on Jan 9, 2023. It is now read-only.
This repository was archived by the owner on Jan 9, 2023. It is now read-only.
Open
Description
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);
}
Metadata
Metadata
Assignees
Labels
No labels