views:

230

answers:

1

Hello,

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.

+1  A: 

Can you nest your chart into a ScrollViewer:

<ScrollViewer HorizontalScrollBarVisibility="Auto>
    <YourChartHere />
</ScrollViewer>
Scott