Reputation: 405
I have a wpf column series chart and I have more than 15 columns. I want the horizontal scroll to show up. And i am not able to.
Any help.
Upvotes: 0
Views: 3064
Reputation: 12050
Can you nest your chart into a ScrollViewer:
<ScrollViewer HorizontalScrollBarVisibility="Auto>
<YourChartHere />
</ScrollViewer>
Upvotes: 3