I am have problems plotting a colour grid. My I plot it, the grid gets set properly, but there are only small squares of colour in each cell of the grid on the chart (the size of each square seems to be 1 x 1).
If I set irregular grid to true, then I just get a small grid on the bottom left corner.
Here is my code
Series1->AddXYZ(10,112.9084,10);
Series1->AddXYZ(10,64.74646,23.3333);
Series1->AddXYZ(10,41.16329,36.6667);
Series1->AddXYZ(10,28.58798,50);
Series1->AddXYZ(23.3333,112.9549,10);
Series1->AddXYZ(23.3333,64.78164,23.3333);
Series1->AddXYZ(23.3333,41.19117,36.6667);
Series1->AddXYZ(23.3333,28.61103,50);
Series1->AddXYZ(36.6667,112.9549,10);
Series1->AddXYZ(36.6667,64.78164,23.3333);
Series1->AddXYZ(36.6667,41.19117,36.6667);
Series1->AddXYZ(36.6667,28.61103,50);
Series1->AddXYZ(50,112.9549,10);
Series1->AddXYZ(50,64.78164,23.3333);
Series1->AddXYZ(50,41.19117,36.6667);
Series1->AddXYZ(50,28.61103,50);
Colour Grid
Hi, Neil.
True, I get the same results. At the moment color grid series supports only equidistant grids. We're working on adding the non-equidistant support - hopefully for next maintenance release. The problem is the new optimized code cannot transform non equidistant grid to internal birmap pixels.
A temorary solution might be to use surface series with the following 3D settings:
Chart3DPercent = 100
View3DOptions.Elevation = 270
View3DOptions.Orthogonal = False
View3DOptions.Perspective = 0
View3DOptions.Rotation = 360
View3DOptions.Zoom = 97
True, I get the same results. At the moment color grid series supports only equidistant grids. We're working on adding the non-equidistant support - hopefully for next maintenance release. The problem is the new optimized code cannot transform non equidistant grid to internal birmap pixels.
A temorary solution might be to use surface series with the following 3D settings:
Chart3DPercent = 100
View3DOptions.Elevation = 270
View3DOptions.Orthogonal = False
View3DOptions.Perspective = 0
View3DOptions.Rotation = 360
View3DOptions.Zoom = 97
Marjan Slatinek,
http://www.steema.com
http://www.steema.com
Hi Neil,
you can solve this increasing the Size of the Axis labels i.e. :
Chart1.Axes.Left.LabelsSize := 100;
you can solve this increasing the Size of the Axis labels i.e. :
Chart1.Axes.Left.LabelsSize := 100;
Pep Jorge
http://support.steema.com
http://support.steema.com