DevExtreme Vue - Resolve Overlapping

In multi-series charts, point labels often overlap. To decide how to resolve overlapping, specify the resolveLabelOverlapping option. It allows you to hide certain labels, or slightly shift them, or keep them as they are (i.e. overlapping).

jQuery
JavaScript
$(function() {
    $("#pieChartContainer").dxPieChart({
        // ...
        resolveLabelOverlapping: 'shift' // or 'hide' | 'none'
    });
});
Angular
HTML
TypeScript
<dx-pie-chart ...
    resolveLabelOverlapping="shift"> <!-- or 'hide' | 'none' -->
</dx-pie-chart>
import { DxPieChartModule } from "devextreme-angular";
// ...
export class AppComponent {
    // ...
}
@NgModule({
    imports: [
        // ...
        DxPieChartModule
    ],
    // ...
})

Another way to deal with overlapping labels is to hide all labels of a specific series once their count exceeds a certain limit. Mostly, this feature is useful if the series accepts new points at runtime. To specify the limit on point labels, assign a number to the maxLabelCount option.

jQuery
JavaScript
$(function() {
    $("#pieChartContainer").dxPieChart({
        // ...
        series: [{
            // ...
            maxLabelCount: 10
        }, {
            // ...
        }]
    });
});
Angular
HTML
TypeScript
<dx-pie-chart ... >
    <dxi-series [maxLabelCount]="10" ... ></dxi-series>
</dx-pie-chart>
import { DxPieChartModule } from "devextreme-angular";
// ...
export class AppComponent {
    // ...
}
@NgModule({
    imports: [
        // ...
        DxPieChartModule
    ],
    // ...
})

View Demo

See Also