jQuery Chart - commonPaneSettings
Type:
A pane is a chart area containing series. If there are many series an a chart, they can be distributed between multiple panes.
The commonPaneSettings object, which is described here, specifies common settings for all panes in the chart. To specify properties of an individual pane, use the objects of the panes array. Individual settings override common settings.
backgroundColor
Default Value: 'none'
This property supports the following colors:
- Hexadecimal colors
- RGB colors
- RGBA colors
- Predefined/cross-browser color names
- Predefined SVG colors
- Paint server address
You can also specify a custom pattern or gradient instead of a plain color. Call the registerPattern() or registerGradient() method to obtain a fill ID. Assign that value to the fillId
field.
This functionality is available for the following Chart series:
- Area
- Stacked area
- Full-stacked area
- Spline area
- Stacked spline area
- Full-stacked spline area
- Range area
- Step area
- Bar
- Stacked bar
- Full-stacked bar
- Range bar
- Bubble
jQuery
index.js
$(function(){ $("#chartContainer").dxChart({ // ... commonPaneSettings: { // ... backgroundColor: { fillId: customPatternId } } }); });
Angular
app.component.html
app.component.ts
<dx-chart ... > <dxo-common-pane-settings [backgroundColor]="fill"> </dxo-common-pane-settings> </dx-chart>
// ... export class AppComponent { // ... fill = { fillId: this.customPatternId }; }
Vue
App.vue (Options API)
App.vue (Composition API)
<template> <DxChart ... > <DxCommonPaneSettings :background-color="fill" /> </DxChart> </template> <script> import DxChart, { DxCommonPaneSettings } from 'devextreme-vue/chart'; // ... export default { components: { DxChart, DxCommonPaneSettings }, data() { return { // ... fill: { fillId: this.customPatternId } } } } </script>
<template> <DxChart ... > <DxCommonPaneSettings :background-color="fill" /> </DxChart> </template> <script setup> import DxChart, { DxCommonPaneSettings } from 'devextreme-vue/chart'; // ... const fill = { fillId: customPatternId }; </script>
React
App.js
import React from 'react'; import Chart, { CommonPaneSettings } from 'devextreme-react/chart'; // ... const fill = { fillId: customPatternId }; export default function App() { return ( <Chart ... > <CommonPaneSettings backgroundColor={fill} /> </Chart> ); }
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.