I am currently working with the angular-flot library to and facing a strange behavior in Google Chrome Browser and the bands feature of flot.
Pictures say more than 1000 words, so here a screenshot of the problem first:
Problem (Chrome):
So it seems that Google Chrome has some Issues with parsing the Hexcolor with Alpha values. The below code shows the JSON for the line with the bands feature (indicates the standard deviation in this particular case).
$scope.ChartOptions.series.push({
"label": "Testgraph",
"color": '#33FF55",
rendererOptions: {
bands: {
show: true,
interval: statisticsService.standardDeviation($scope.Data[i]),
fillColor: "#8CFF3333"
}
}
});