All docs
V19.1
24.1
The page you are viewing does not exist in version 24.1.
23.2
The page you are viewing does not exist in version 23.2.
23.1
The page you are viewing does not exist in version 23.1.
22.2
The page you are viewing does not exist in version 22.2.
22.1
The page you are viewing does not exist in version 22.1.
21.2
The page you are viewing does not exist in version 21.2.
21.1
The page you are viewing does not exist in version 21.1.
20.2
The page you are viewing does not exist in version 20.2.
20.1
The page you are viewing does not exist in version 20.1.
19.2
19.1
18.2
18.1
17.2
A newer version of this page is available. Switch to the current version.

DevExtreme jQuery - Series Types

Topics in this section describe the series types that come with the **PolarChart** widget. Each topic gives an overview of a series type purpose, and details ways to enable and tune it to your needs.

View Demo

Area

The area series type is useful when you need to emphasize a change in values. With this series type, data is displayed by a line that joins points, and the shaded area between this line and the zero value. This line is a border and is invisible by default.

AreaPolarSeriesType ChartJS

To understand how polar charts are built, imagine how a chart in a rectangular coordinate system is transformed by rounding its argument axis.

Transformation from Rectangular to Polar Coordinates PolarAreaSeriesType ChartJS

To use the area series type, assign 'area' to the type property of the series configuration object.

JavaScript
var polarChartOptions = {
    // ...
    series: {
        type: 'area'
    }
};

To learn how to specify data for a series, refer to the Data Binding topic. Note that you can use DateTime and Numeric types for points in the data source, as well as the String type. By default, the data of the DateTime and Numeric types is displayed on continuous axes, while string values are displayed on discrete axes (you can manage the axes types using their type option). When continuous axes are used in the widget, the area chart is displayed using a smooth border line.

Smooth PolarAreaSeriesType ChartJS

When either the argument or value axis is discrete, the area chart joins data points by straight lines.

Discrete PolarAreaSeriesType ChartJS

Note that you can use a spider web for polar charts displaying discrete data. For this purpose, set the widget's useSpiderWeb option to true.

SpiderWeb PolarAreaSeriesType ChartJS

To change the series default appearance, set the options of the series configuration object. For instance, you can change the following.

  • Area Color
    A color from the chart's palette is used by default. Set a custom color using the series' color property. This color will be used for the series' border. The color of the series area will be the same, but a specified capacity will be applied.

  • Border Options
    Make a border visible by setting the visible property of the series' border object. When the border is visible, you can change its width and color, using the width, color and dashStyle properties of the series' border object. In addition, you can change the border settings when the series is hovered or selected. To do this, set the properties of the border object within the series' hoverStyle or selectionStyle configuration object.

  • Point Options
    Make points visible by setting the visible property of the series' point object. For details on other point options, refer to the Series Points topic.

  • Point Label Options
    Make point labels visible by setting the visible property of the series' label object. For details on other label options, refer to the Series Point Labels topic.

These and other options that can be set for series of the area type are explained in the AreaSeries Reference section. Set the required series options within the series object of the chart's configuration object.

Bar

In the bar series type, data is displayed as sets of rectangular bars with lengths proportional to the values that they represent. Often, bar series are used to compare values in different discrete categories such as months, countries, age, etc. When there are several bar series, bars for each argument are displayed side-by-side. If you need to show bars for each series stacked on each other, use the stackedBar series type (see Stacked Bar).

PolarBarSeriesType ChartJS

To understand how polar charts are built, imagine how a chart in a rectangular coordinate system is transformed by rounding its argument axis.

Transformation from Rectangular to Polar Coordinates PolarBarSeriesType ChartJS

To use the bar series type, assign 'bar' to the type property of the series configuration object.

JavaScript
var polarChartOptions = {
    // ...
    series: {
        type: 'bar'
    }
};

To learn how to specify data for a series, refer to the Data Binding topic.

To change the series default appearance, set the options of the series configuration object. For instance, you can change the following.

  • Bar Color
    A color from the chart's palette is used by default. Set a custom color using the series' color property.

  • Bar Border Options
    Make a border visible by setting the visible property of the series' border object. When the border is visible, you can change its width, style and color using the width, dashStyle and color properties of the series' border object. In addition, you can change the border settings when the series is hovered or selected. To do this, set the properties of the border object within the series' hoverStyle or selectionStyle configuration object.

  • Corner Radius
    Set a corner radius for bars using the series' cornerRadius property. This is helpful if you need rounded corners in bars.

  • Bar Label Options
    Make bar labels visible by setting the visible property of the series' label object. For details on other label options, refer to the Series Point Labels topic.

These and other options that can be set for bar series are explained in the BarSeries Reference section. Set the required series options within the series object of the chart's configuration object.

Specify the Bar Width

You can specify individual series' angular bar width. In multi-series charts, different series' bars with the same argument are collected in groups with a customizable angular width. You can use fixed (that is, degrees) or relative units to set both these widths. Use relative units if the width should adapt to the widget or container size. Fixed width takes precedence over relative width if both are specified.

Relative Bar Width

Regulating the empty space on a bar's sides controls the relative angular bar width. Use the barPadding option to specify how much of the available sector should be empty. For example, a barPadding of 0.1 leaves 10% of the available sector empty giving the rest to the bar.

jQuery
JavaScript
$(function () {
    $("#polarChartContainer").dxPolarChart({
        series: [{
            // ...
            barPadding: 0.1 // for an individual series
        }, {
            // ...
        }],
        commonSeriesSettings: {
            // ...
            barPadding: 0.1 // for all series in the chart
        }
    });
});
Angular
HTML
TypeScript
<dx-polar-chart ... >
    <dxi-series
        [barPadding]="0.1"> <!-- for an individual series -->
    </dxi-series>
    <dxi-series ... ></dxi-series>
    ...
    <dxo-common-series-settings
        [barPadding]="0.1"> <!-- for all series in the chart -->
    </dxo-common-series-settings>
</dx-polar-chart>
import { DxPolarChartModule } from "devextreme-angular";
// ...
export class AppComponent {
    // ...
}
@NgModule({
    imports: [
        // ...
        DxPolarChartModule
    ],
    // ...
})

In single-series charts, the available sector equals the interval between two major ticks. In multi-series charts, it depends on the number of bars in the parent group and the group's angular width.

The parent group's width can be specified using the barGroupPadding option. It works like barPadding, dividing the available sector between the bar group and an empty space. For example, a barGroupPadding of 0.2 leaves 20% of the sector empty. The available sector is the interval between two major ticks. Unlike barPadding, which can be specified for each series individually, barGroupPadding applies to the whole chart.

jQuery
JavaScript
$(function () {
    $("#polarChartContainer").dxPolarChart({
        // ...
        barGroupPadding: 0.2
    });
});
Angular
HTML
TypeScript
<dx-polar-chart ...
    [barGroupPadding]="0.2">
    <!-- ... -->
</dx-polar-chart>
import { DxPolarChartModule } from "devextreme-angular";
// ...
export class AppComponent {
    // ...
}
@NgModule({
    imports: [
        // ...
        DxPolarChartModule
    ],
    // ...
})

The following images illustrate how different barPadding and barGroupPadding values change a chart's appearance. In this example, all series have the same barPadding.

barGroupPadding: 0
barPadding: 0
barGroupPadding: 0.2
barPadding: 0
barGroupPadding: 0.2
barPadding: 0.1

Fixed Bar Width

The barWidth option specifies fixed angular bar width in degrees. This option is available for each series.

jQuery
JavaScript
$(function () {
    $("#polarChartContainer").dxPolarChart({
        series: [{
            // ...
            barWidth: 20 // for an individual series
        }, {
            // ...
        }],
        commonSeriesSettings: {
            // ...
            barWidth: 20 // for all series in the chart
        }
    });
});
Angular
HTML
TypeScript
<dx-polar-chart ... >
    <dxi-series
        [barWidth]="20"> <!-- for an individual series -->
    </dxi-series>
    <dxi-series ... ></dxi-series>
    ...
    <dxo-common-series-settings
        [barWidth]="20"> <!-- for all series in the chart -->
    </dxo-common-series-settings>
</dx-polar-chart>
import { DxPolarChartModule } from "devextreme-angular";
// ...
export class AppComponent {
    // ...
}
@NgModule({
    imports: [
        // ...
        DxPolarChartModule
    ],
    // ...
})

A bar's maximum angular width is limited. In single-series charts, it cannot be greater than the interval between two major ticks. In multi-series charts, it depends on the number of bars in the parent group and this group's actual angular width.

Bar groups' angular width can be changed using the barGroupWidth option. Like barWidth, it accepts values ​​in degrees, but unlike it, applies to the entire chart. The groups' maximum angular width is the interval between two major ticks.

jQuery
JavaScript
$(function () {
    $("#polarChartContainer").dxPolarChart({
        // ...
        barGroupWidth: 45
    });
});
Angular
HTML
TypeScript
<dx-polar-chart ...
    [barGroupWidth]="45">
    <!-- ... -->
</dx-polar-chart>
import { DxPolarChartModule } from "devextreme-angular";
// ...
export class AppComponent {
    // ...
}
@NgModule({
    imports: [
        // ...
        DxPolarChartModule
    ],
    // ...
})

Line

With the line series type, data is displayed as points joined by a line. This series type is useful when you need to visualize a trend in data over intervals.

PolarLineSeriesType ChartJS

To understand how polar charts are built, imagine how a chart in a rectangular coordinate system is transformed by rounding its argument axis.

Transformation from Rectangular to Polar Coordinates PolarLineSeriesType ChartJS

To use the 'line' series type, assign 'line' to the type property of the series configuration object.

JavaScript
var polarChartOptions = {
    // ...
    series: {
        type: 'line'
    }
};

To learn how to specify data for a series, refer to the Data Binding topic. Note that, you can use DateTime and Numeric types for points in the data source, as well as the String type. By default, the data of the DateTime and Numeric types is displayed on continuous axes, while string values are displayed on discrete axes (you can manage the axes types using their type option). When continuous axes are used in the widget, the line chart is displayed using a smooth curve.

Smooth PolarLineSeriesType ChartJS

When either argument or value axis is discrete, the line chart joins data points by straight lines.

Discrete PolarLineSeriesType ChartJS

Note that you can use a spider web for polar charts displaying discrete data. For this purpose, set the widget's useSpiderWeb option to true.

SpiderWeb PolarLineSeriesType ChartJS

Line polar charts are appropriate for data whose values span cyclically repeating arguments. In this instance, set the argumentAxis.period option.

Cyclic PolarLineSeriesType ChartJS

In some scenarios, you may need to close the line chart by joining the first point and the last point. For this purpose, set the series' closed option.

Closed Cyclic PolarLineSeriesType ChartJS

To change the series default appearance, set the options of the series configuration object. For instance, you can change the following.

  • Line Width
    Change the line width using the series' width property. To set a line width when the line is hovered or selected, set the width property of the hoverStyle or selectionStyle object defined within the series configuration object.

  • Line Color
    A color from the chart's palette is used by default. Set a custom color using the series' color property.

  • Line Dash Style
    Set the line's style using the series' dashStyle property. To set a dash style when the line is hovered or selected, set the dashStyle property of the hoverStyle or selectionStyle object defined within the series configuration object.

  • Line Point Options
    Set up the series' point object (see the Series Points topic).

  • Point Label Options
    Make point labels visible by setting the visible property of the series' label object. For details on other label options, refer to the Series Point Labels topic.

These and other options that can be set for series of the line type are explained in the LineSeries Reference section. Set the required series options within the series object of the chart's configuration object.

Scatter

With the scatter series type, data is displayed as a collection of points. This series type is often used to display radar points.

PolarScatterSeriesType ChartJS

To understand how polar charts are built, imagine how a chart in a rectangular coordinate system is transformed by rounding its argument axis.

Transformation from Rectangular to Polar Coordinates PolarScatterSeriesType ChartJS

PolarChart uses the scatter series type by default. But in some cases, you may need to specify this series type explicitly. For this purpose, assign 'scatter' to the type property of the series configuration object.

JavaScript
var polarChartOptions = {
    // ...
    series: {
        type: 'scatter'
    }
};

To learn how to specify data for a chart series, refer to the Data Binding topic.

Note that you can use a spider web for polar charts displaying discrete data. For this purpose, set the widget's useSpiderWeb option to true.

SpiderWeb PolarScatterSeriesType ChartJS

You can change the default appearance using series options. For instance, you can change the following.

  • Point Color
    A color from the chart's palette is used by default. Set a custom color using the series' color property.

  • Point Options
    Set up the series' point object (see the Series Points topic).

  • Point Labels
    Make point labels visible by setting the visible property of the series' label object. For details on other label options, refer to the Series Point Labels topic.

These and other options that can be set for series of the scatter type are explained in the ScatterSeries Reference section. Set the required series options within the series object of the chart's configuration object.

Stacked Bar

The stackedBar series type is used when there are several series that represent values for discrete categories. With this series type, data is displayed as triangular bars with lengths proportional to the values that they represent. Bars of each subsequent series are stacked on top of the bars of the previous series. The height of the resulting bar shows the combined result of a category.

PolarStackedBarSeriesType ChartJS

To understand how polar charts are built, imagine how a chart in a rectangular coordinate system is transformed by rounding its argument axis.

Transformation from Rectangular to Polar Coordinates PolarStackedBarSeriesType ChartJS

To use the stackedBar series type, assign 'stackedbar' to the type property of the series configuration object.

JavaScript
var polarChartOptions = {
    // ...
    series: {
        type: 'stackedbar'
    }
};

To learn how to specify data for a series, refer to the Data Binding topic.

To change the series default appearance, set the options of the series configuration object. For instance, you can change the following.

  • Bar Color
    A color from the chart's palette is used by default. Set a custom color using the series' color property.

  • Bar Border Options
    Make a border visible by setting the visible property of the series' border object. When the border is visible, you can change its width, line style and color, using the width, dashStyle and color properties of the series' border object. In addition, you can change the border settings when the series is hovered or selected. To do this, set the properties of the border object within the series' hoverStyle or selectionStyle configuration object.

  • Corner Radius
    Set a corner radius for bars using the series' cornerRadius property. This is helpful if you need rounded corners in bars.

  • Stack
    Series values can be located in more than one stack for each argument value. Set the appropriate stack for a series using the stack property. This is helpful if you need to divide series between the required number of logical stacks (e.g., 'men' and 'women' stacks).

  • Bar Label Options
    Make bar labels visible by setting the visible property of the series' label object. For details on other label options, refer to the Series Point Labels topic.

These and other options that can be set for a series of the stackedBar type are explained in the StackedBarSeries Reference section. Set the required series options within the series object of the chart's configuration object.