Zooming of specific area in chart of win form

1.3k views Asked by At

I have Win form application in C# which contain System.Windows.Forms.DataVisualization.Charting.Chart.

I want to zoom particular area or Datapoint in ChartDisplay area.

Note: Zooming of area in chart, not whole chart zooming.

1

There are 1 answers

1
Sjips On

Have chart selected. In properties window, select ChartAreas. In ChartArea Collection editor, select (in the right properties view) Cursor. For CursorX, set these properties to true: IsUserEnabled and IsUserSelection. Repeat for CursorY.

Close the windows and run youur app. Now you can zoom in the chart area.