BCGControlBar Pro for MFC
CBCGPChartObject* CBCGPChartVisualObject::AddChartObject ( const CBCGPPoint ptLeftTopOffset,
CBCGPChartObject::CoordinateMode  mode = CBCGPChartObject::CM_PIXELS,
BOOL  bRelativeToDefaultAxes = TRUE 
)

Adds a new Chart Object.

Call this method to add a new Chart Object at the specified coordinates with the specified Coordinate Mode.

mode can be one of the following enumerated values:

  • CM_PERCENTS - members of rcCoordinates are treated as offsets from left, right, top and bottom bounds of the Chart calculated in percents from the Chart size.
  • CM_PIXELS - members of rcCoordinates are treated as offsets in pixels from the Chart bounds.
  • CM_CHART_VALUES - members of rcCoordinates are treated as values on related X (left, right) and Y (top, bottom) axes.
  • CM_CHART_VALUE_DIST_ANGLE - rcCoordinates.left - X value, rcCoordinates.top - Y value, rcCoordinates.right - distance, rcCoordinates.bottom - angle.
  • CM_AXIS_INSIDE_MARK - rcCoordinates.left - X value, rcCoordinates.top - Y value, rcCoordinates.right - distance in pixels from the point defined by X or Y axis values, rcCoordinates.bottom - distance in pixels from the related axis.
  • CM_AXIS_OUTSIDE_MARK - the same as CM_AXIS_INSIDE_MARK, but the distance is calculated in opposite direction.
Parameters
ptLeftTopOffsetLeft-top corner of an object.
modeCoordinate mode.
bRelativeToDefaultAxesTRUE - coordinates of the newly created object are calculated according to default (primary) axes; FALSE - SetRelatedAxes will be called later for the newly created object.