Access violation using 7.0.1.2
Posted: Wed Nov 01, 2006 10:22 am
Hi there,
I just updated from ActiveX TChart 7.0.0.3 to 7.0.1.2 and I’m unable to perform the following statement:
IAreaSeries::PutUseYOrigin is causing an access violation.
I did some research and tried using but still the same access violation. I’m using Visual Studio .NET 2003.
Here’s some code:
I just updated from ActiveX TChart 7.0.0.3 to 7.0.1.2 and I’m unable to perform the following statement:
Code: Select all
m_pChart->Series(lSerie)->asArea->UseYOrigin = true;
I did some research and tried using
Code: Select all
aSeries[lSerie]
Here’s some code:
Code: Select all
m_pChart->AddSeries(scArea);
m_pChart->Series[lSerie]->asArea->Stairs = true;
m_pChart->Series(lSerie)->asArea->UseYOrigin = true;
m_pChart->Series(lSerie)->XValues->DateTime = true;
m_pChart->Series(lSerie)->VerticalAxisCustom = m_Axis2;