BCGControlBar Pro for MFC
void CBCGPChartAxis::SetDisplayUnits ( double  dblUnits = 0.)
inline

Sets display units.

Call this method to set display units for an axis. For example, if you wish display thousands as Y axis value call:

Copy
pAxis->SetDisplayUnits(1000);
pAxis->m_strDataFormat = _T("%.2f K");

In this case you'll see data labels like "10.05 K".

Set dblUnits to 0 to display non-modified axis labels (values).

Parameters
dblUnitsSpecify the unit to display.