PlotBars() and ColorMap #352
Unanswered
swinefeaster
asked this question in
Q&A
Replies: 1 comment
-
the code above looks good assuming you are only calling it during app initialization (i.e. not every frame update). I need more context to help debug this. Can you post a minimal full example? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
hi i'm trying to plot a bar graph with two bars, each with predefined colors. i created a colormap as such:
_colorMapArray = {{0.0f, 0.0f, 1.0f, 1.0f}, {0.0f, 1.0f, 0.0f, 1.0f}};
_colorMap = ImPlot::AddColormap("HistogramPlot", &_colorMapArray[0], SafeInt(_colorMapArray.size()));
ImPlot::PushColormap(_colorMap);
...
but it always uses the first color in the color map to draw both bars. what am i doing wrong?
thanks
Beta Was this translation helpful? Give feedback.
All reactions