Currently i am looking into making a bar chart in my WPF application.
Although i am not sure what exactly sure what the best way would be for handling this:
- WPF Toolkit (last update seems ages ago, dated since 2010)
- List control and style / display it as a bar chart
- ...?
The layout will be pretty basic, but it would be nice if the bar charts could actually be updated at run time. The values of the bar charts are being generated trough SQL server database values. The bar char values will always be times (HH:mm:ss).
Also the 4-5 bars that will be displayed are related to each other (so bar 1 cannot for example exceed 100% if there is a other bar if this makes any sense). The bar are shown within a 24 hour time frame.
With each bar there has to be also a timer that actually times how long the certain activity is running (in a separate textbox, it does not require to be included in the chart itself).
So to sum it up 1 bar will include its name and it value (hh:mm:ss) in separate labels / textblocks. Unless there is a better solution suggested.
Currently i have the layout, but it only consists out of a grid, labels and retangles.
Thanks.