DevExtreme jQuery/JS - Rotate and Invert the Chart
When the Chart is rotated, its axes are swapped around.
To rotate the Chart, set the rotated option to true.
JavaScript
- $(function() {
- $("#chartContainer").dxChart({
- // ...
- rotated: true
- });
- });
Besides being swapped around, chart axes can be inverted, or "mirrored".
To invert both argument and value axes, assign true to the inverted option of the commonAxisSettings object. The same option declared in the argumentAxis or valueAxis object inverts a specific axis.
JavaScript
- $(function() {
- $("#chartContainer").dxChart({
- // ...
- commonAxisSettings: {
- inverted: true
- },
- // or for a specific axis
- argumentAxis: {
- inverted: true
- },
- valueAxis: {
- inverted: true
- }
- });
- });
See Also
Feel free to share topic-related thoughts here.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
Thank you for the feedback!
If you have technical questions, please create a support ticket in the DevExpress Support Center.