I am making chart that will read from a data source holding the name, count, and color for a certain score (ex: series1, 2, #00ff00; series2, 4, #ffff00; series3, 5, #ff0000).
I am creating a 100% stacked bar chart in which I want the counts of each color as the values and the colors as series.
My issue come with my color palette. I want each series to show up as the color value which is held in the dataset. I can't create a custom palette because the colors will not always be the same. I will have a hex color in the dataset which needs to be the color of each corresponding segment of the 100% stacked bar graph.
Has anyone ever done this?