Specifying the minimum size of bitmap charts

The size of a bitmap chart created by PPM is determined by the surrounding MV Flex component. To prevent a possible reduction of the bitmap graphic from making the chart illegible, a minimum size can be specified.

The extended parameters (extendedParams) of the init() method for the MV can be used to define the minimum chart width to be created by PPM. The minimum height is determined from the specified minimum width by the constant aspect ratio.

Example: Calculate the chart width

mv1.init(
"mvParent1",
""/Details/Sales/CycleTime_1",
"FAVORITES_SHARED",
"BITMAP",
"100%",
400,
[],
null,
{
"MINIMAL_BITMAP_CHART_WIDTH":"480",
}
);

The width is specified in pixels and is only applicable for viewtype BITMAP.