I am trying to add data through the use of regions:
Code: Select all
for (int i = 0; i < iNumRegions; ++i)
{
pSeries->AddX(pRegions[i].dStart);
pSeries->AddX(pRegions[i].dEnd);
pSeries->AddNull();
}
The above code causes one area from start to end (10->50 in this case), with lines at the boundaries.
Am I missng something?