| 542 | //----------------------------------------------------------------------------- |
| 543 | |
| 544 | void Demo_BarPlots() { |
| 545 | IMGUI_DEMO_MARKER("Plots/Bar Plots"); |
| 546 | static ImS8 data[10] = {1,2,3,4,5,6,7,8,9,10}; |
| 547 | if (ImPlot::BeginPlot("Bar Plot")) { |
| 548 | ImPlot::PlotBars("Vertical",data,10,0.7,1); |
| 549 | ImPlot::PlotBars("Horizontal",data,10,0.4,1,{ImPlotProp_Flags, ImPlotBarsFlags_Horizontal}); |
| 550 | ImPlot::EndPlot(); |
| 551 | } |
| 552 | } |
| 553 | |
| 554 | //----------------------------------------------------------------------------- |
| 555 | |