Hi Experts,
I want to rotate a HeatMapChart (NHeatMapSeries), so that the origin of co-ordinates is in the upper right corner.
With a SurfaceChart this can be done using:
nChartControl1.Charts[0].Projection.Rotation = 180;
- but with the HeatMapChart it doesnt work.
Than I tried to use:
nChartControl1.Charts[0].SetPredefinedChartStyle(PredefinedChartStyle.HorizontalRight);
- than I am "half way" there. But I need to rotate the Chart not just 90 degrees but 180 degrees.
How can I do this?
Thanks for your help,
Joern