I am using WinRTXamlToolkit to create a histogram in UWP. I'd like to hide almost all elements in the chart, but displaying only the columns, is that possible?
Is it hard to hide only the confusing numbers displays along x Axis
I am using WinRTXamlToolkit to create a histogram in UWP. I'd like to hide almost all elements in the chart, but displaying only the columns, is that possible?
Is it hard to hide only the confusing numbers displays along x Axis
I second Chris's suggestion that you'll need some serious retemplating. IMHO it would make more sense to simply build your own chart with a few bottom-aligned rectangles. It will be easier, it will perform better and be more satisfying to accomplish than chipping at the full chart control to trim it down to what is essentially - a few bottom-aligned rectangles. Bonus points for doing it in Win2D or other Direct2D way that should allow you to get real-time update performance.
See sample Win2D chart rendering implementation at https://github.com/xyzzer/Win2DChartSample