02-12-2021 11:29 PM
I want to create a vertical bar graph with three different bars, each a different color. As best I can tell, if I use PlotY I have to pass all three values in at the same time which means they all get plotted in the same color. I thought about using PlotRectangle to draw each bar, but it seems like there should be an easier way without having to calculate all the coordinates for each bar. Any ideas?
02-13-2021 04:31 AM
Hi,
you could either draw individual rectangles as you suggested or have three separate calls to PlotY() with adjusted data sets.