type_="boxplot"

Using <widget class_="chart" type_="boxplot"> produces a chart that visually displays data distributions and provides information about key indicators such as the highest value, lowest value, mean, and median for the given set of columns. (Available as of version 10.22)

Syntax

<dynamic>
    <widget class_="chart" type_="boxplot">
      [1010data_QUERY]
    </widget>
</dynamic>

The [1010data_QUERY] associated with the widget should result in one or more numeric columns.

The distribution for the data from each column is represented separately within the chart. This allows for side-by-side comparisons of different data sets.

Example: type_="boxplot"

The following example uses the table pub.demo.weather.wunderground.forecast to create chart containing box plots that display the data distribution for the high and low temperatures forecast for 7/4/2016 in those zip codes starting with 0100.

<dynamic>
  <widget class_="chart" type_="boxplot" hints_="1" 
   base_="pub.demo.weather.wunderground.forecast">
    <sel value="datefor=20160704"/>
    <sel value="beginswith(zipcode;'0100')"/>
    <colord cols="temphighm,templowm"/>
  </widget>
</dynamic>