Nevron Forum
Home
»
Nevron Vision for NET
»
Nevron Chart for .NET
Can the 'Polar Chart' zooming?
https://nevron.com/Forum/Topic13043.aspx
By cho seongho
-
Tuesday, April 28, 2020
I tried, but can't zoom.
By Nevron Support
-
Thursday, April 30, 2020
Hi Cho,
Currently, only cartesian charts support zooming and scrolling. The Chart in the .NET Vision suite supports zooming of polar charts trough the NPanelZoomTool:
nChartControl1.Controller.Tools.Add(new NPanelSelectorTool());
nChartControl1.Controller.Tools.Add(new NPanelZoomTool());
We hope this helps - let us know if you have any questions.
By cho seongho
-
Tuesday, May 5, 2020
thanks.
and, how can I reset zoom?
It's not working.
axis.PagingView.Enabled = false
By Nevron Support
-
Friday, May 8, 2020
Hi Cho,
In order to revert to the original zooming, you need to rest the content area zoom factor:
NPolarChart polarChart = nChartControl1.Charts[0] as NPolarChart;
polarChart.ContentAreaZoomFactor = new NRectangleF(0, 0, 1, 1);
nChartControl1.Refresh();
Let us know if you meet any problems.