A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://js.devexpress.com/Vue/Documentation/ApiReference/UI_Components/dxChart/Configuration/panes/ below:

Vue Chart - panes | Vue Documentation

Declares a collection of panes.

Selector: DxPane

Cannot be used in themes.

A pane is a chart area containing series. If there are many series an a chart, they can be distributed between multiple panes.

Each object in the panes array configures a single pane. If you have several panes, we recommend you to name each pane in order to be able to refer to them afterwards.

View Demo

See Also

Specifies the color of the pane's background.

Selector: DxBackgroundColor

Default Value: 'none'

This property supports the following colors:

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.

jQuery
$(function(){
    $("#chartContainer").dxChart({
        // ...
        commonPaneSettings: {
            // ...
            backgroundColor: {
                fillId: customPatternId
            }
        }
    });
});
Angular
<dx-chart ... >
    <dxo-common-pane-settings [backgroundColor]="fill">
    </dxo-common-pane-settings>
</dx-chart>
// ...

export class AppComponent {
    // ...

    fill = {
        fillId: this.customPatternId
    };
} 
Vue

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
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>        
    ); 
} 

View on GitHub

Configures the pane border.

Specifies the name of the pane.

When there are multiple panes in a chart, series need to know which pane they belong to. By default, all of them belong to the defaultPane or, if it is not specified, to the last pane in the panes array. To bind a series to another pane, name the pane and assign this name to the pane series property.

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!

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4