|
Group: Forum Members
Posts: 86,
Visits: 221
|
... your proposal was exactly what I tried already - without success: chart.Projection.ViewerRotation = 180; //doesnt work with HeatMapChart - at least for my example
But now I found a solution:
//Rotate 2d-Chart 180 degrees nChartControl1.Charts[0].Axis(StandardAxis.PrimaryX).ScaleConfigurator.Invert = true; nChartControl1.Charts[0].Axis(StandardAxis.PrimaryX).Anchor = new NDockAxisAnchor(AxisDockZone.FrontTop, false);
nChartControl1.Charts[0].Axis(StandardAxis.PrimaryY).ScaleConfigurator.Invert = true; nChartControl1.Charts[0].Axis(StandardAxis.PrimaryY).Anchor = new NDockAxisAnchor(AxisDockZone.FrontRight, false);
nChartControl1.Refresh();
Thanks for the help anyway, best regards, Joern
|