BCGControlBar Pro for MFC
void CBCGPChartObject::SetCoordinates ( const CBCGPPoint ptLeftTop,
const CBCGPPoint ptRightBottom,
CoordinateMode  mode = CM_PIXELS 
)

Sets new coordinates.

Call this method to set new coordinates and Coordinate Mode for a Chart Object. The coordinates are treated depending on the Coordinate Mode (see below).

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
ptLeftTopSpecifies left-top corner of a Chart Object.
ptRightBottomSpecifies right-bottom corner of a Chart Object.
modeSpecifies the new coordinate mode.