BubbleChart.ShowBubbleHistoryLabels

Syntax

ShowBubbleHistoryLabels: Boolean;

Description

The ShowBubbleHistoryLabels property determines whether labels are shown in the values history for bubble chart bubbles.

Comments

Use JSON or the setShowBubbleHistoryLabels method to set the property value and the getShowBubbleHistoryLabels method to get the property value.

This property is set to True if showing labels in values history for bubble chart bubbles is enabled, and False if it is disabled.

Example

To execute this example, the HTML page must contain the BubbleChart component named bubbleChart (see Example of Creating the BubbleChart Component). Before executing the example labels showing the year are shown in history for bubble chart bubbles:

Disable labels displaying:

// Prohibit displaying of labels in history of all bubble chart series
bubbleChart.setShowBubbleHistoryLabels(false);
// get bubble chart bubble from the 27th data series
var point = bubbleChart.getSeries()[26].getPoints()[0];
// Generate and display history of values for this series
point.setHistory(new PP.Ui.ChartHistory({
    Chart: bubbleChart
}));
point.setIsHistoryOn(true);

After executing the example labels are not shown anymore in history of values for bubble chart bubbles:

See also:

BubbleChart