I'm one of those waiting for an alignment fix (?) that made some properties 'NULL' for TColorGridSeries. That aside, trying to use it regardless, I'm trying to plot some data and it is behaving strangely. It seems like the colour grid minimum value is being offset by 1. So, for the code slice below:
Code: Select all
m_pColourGrid->CenteredPoints = false;
m_pColourGrid->IrregularGrid = false;
for(int i = 0; i < 10; i++)
{
for(int j = 0; j < 10; j++)
{
m_pColourGrid->AddXYZ(i,i * j,j);
}
}
Is this a known problem? Am I doing something wrong?