Configuring Mean Deviation

Mean deviation is the average of distances between each of the values and the mean. It gives us an idea of how spread out is the set of values from the center.

In a box and whisker chart, along with the dataset seriesname, the legend also shows the icons for mean, mean deviation, standard deviation, quartile deviation, and the outliers of every data plot. This is a concept exclusively applicable to the box and whisker chart. Each dataset is highlighted by different colors to easily differentiate between them and their icons. The legend icons are interactive; you can click the icons to show/hide the associated values on the chart.

In this section, you will be shown how you can:

  • Show/hide the mean deviation icon in the legend

  • Customize the mean deviation icon

  • Draw mean deviation connectors

  • Connect null data

Showing/Hiding the Mean Deviation Icon

A box and whisker chart with the mean deviation icon shown in the legend box looks like thi:

FusionCharts should load here..

Given below is a brief description of the attribute used to show the mean deviation icon in the legend:

Attribute Name Description
showMD It is used to specify whether the icon representing the mean deviation value of the dataset will be shown in the legend. Setting this attribute to 1 will show the icon, setting it to 0 (default) will hide it. Using this attribute with the data object, you can opt to show/hide the mean deviation icon for specific datasets.

The data structure needed to show the mean deviation icon in the legend is given below:

...

Customizing the Mean Deviation Icon

Given below is a brief description of the attributes used to customize the mean deviation icon:

Attribute Name Description
mdIconSides It is used to specify the number of sides for the mean deviation icon. The default value of this attribute is 3.
mdIconColor It is used to specify the hex code of the color that will be used to render the mean deviation icon in the legend.
mdIconShape It is used to specify the shape for the mean deviation icon. This attribute can take one of the following two values: polygon or spoke. The default shape for a mean deviation icon is the triangle - a polygon with three sides.
mdIconRadius It is used to specify the radius, in pixels, for the mean deviation icon.
mdIconAlpha It is used to specify the transparency for the mean deviation icon. This attribute takes values between 0 (transparent) and 100 (opaque).

Drawing Mean Deviation Connectors

For multiple data plots, you can draw a line to connect the mean deviation icons of each dataplot.

A box and whisker chart rendered with a mean deviation connector looks like this:

FusionCharts should load here..

Given below is a brief description of the attribute used to draw mean deviation connectors for the box and whisker chart:

Attribute Name Description
drawMDConnector It is used to specify whether a connector will be drawn to connect the mean deviation for multiple sets of data.Setting this attribute to 1 will draw the connector, setting it to 0 (default) will hide it. The color that is used to render the mean deviation icon is also used to render the connecting line.

The data structure needed to draw a mean deviation connector is given below:

...

Connecting Null data

If you use the showMD attribute with the data object and set it to 0, the chart will not display the mean deviation icon for that particular set of data. In this case, the missing mean deviation is considered as null data. Consequently, the mean deviation connectors will skip this null data and draw a continuous connector.

A box and whisker chart with the mean deviation null data connected looks like this:

FusionCharts should load here..

In the above chart, a connector is drawn connecting the mean deviation icons of the first and the third data plots, skipping the second data plot.

Given below is a brief description of the attribute used to connect null data using mean deviation connectors::

Attribute Name Description
connectNullData It is used to specify whether the null values will be skipped and a continuous connector line will be drawn for multiple sets of data. Setting this attribute to 1 will ignore the null values and draw a continuous connector line, setting it to 0 will not ignore the null values. This attribute is applicable for the mean deviation icon and all the other deviation icons.

The data structure needed to connect null data using mean deviation connectors is given below:

...

There! You have now seen how you can configure mean deviation for the box and whisker chart.