<div google-chart chart="cellularChart" agc-before-draw="drawHandler(cellularChart, cellularChart.type)" style="{{ chartStyle }}"></div>
$scope.drawHandler = drawHandler;
function drawHandler (chart, type) {
if(type === "Table") {
chart.data.hideColumns([3, 5]);
}
}
If you have a specific issue with the open source project here, I can help. But what you’re asking for sounds like consulting services (picking the right solution for your needs).
I might be able to answer openly. But I can’t provide private assistance to everyone that asks. Sorry.
@amitghodke90 It depends whether the bars are each a different series, or just different values in the same series.
If they are different series they will be represented as different columns in the data table, and you can apply colour to the series with the chart options. See series
in the configuration options reference: https://developers.google.com/chart/interactive/docs/gallery/barchart#configuration-options
If they are different values in the same series, they will all be in the same column but different rows. If this is the case, you could use a DataTable column with "style" role. For more on roles, see: https://developers.google.com/chart/interactive/docs/roles#what-roles-are-available