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
The page you are viewing does not exist in version 18.2.
18.1
The page you are viewing does not exist in version 18.1.
17.2
The page you are viewing does not exist in version 17.2.
Box
Map
Vue
A newer version of this page is available. Switch to the current version.

jQuery PolarChart - legend.title

Configures the legend title.

Type:

Object

|

String

DevExtreme PieChart: Legend Title

To specify only the title's text, assign it directly to this option. Otherwise, set this option to an object with the text and other fields specified.

The title can be accompanied by a subtitle. Assign it to the title.subtitle option.

font

Specifies the legend title's font options.

Type:

Object

jQuery
index.js
$(function() {
    $("#polarChartContainer").dxPolarChart({
        // ...
        legend: {
            title: {
                font: {
                    color: "black"
                }
            }
        }
    });
});
Angular
app.component.html
app.component.ts
app.module.ts
<dx-polar-chart ... >
    <dxo-legend>
        <dxo-title ... >
            <dxo-font
                color="black">
            </dxo-font>
        </dxo-title>
    </dxo-legend>
</dx-polar-chart>
import { Component } from '@angular/core';

@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    styleUrls: ['./app.component.css']
})
export class AppComponent {
    // ...
}
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';

import { DxPolarChartModule } from 'devextreme-angular';

@NgModule({
    declarations: [
        AppComponent
    ],
    imports: [
        BrowserModule,
        DxPolarChartModule
    ],
    providers: [ ],
    bootstrap: [AppComponent]
})
export class AppModule { }
Vue
App.vue
<template>
    <DxPolarChart ... >
        <DxLegend>
            <DxTitle ... >
                <DxFont
                    color="black"
                />
            </DxTitle>
        </DxLegend>
    </DxPolarChart>
</template>

<script>
import DxPolarChart, {
    DxLegend,
    DxTitle,
    DxFont
} from 'devextreme-vue/polar-chart';

export default {
    components: {
        DxPolarChart,
        DxLegend,
        DxTitle,
        DxFont
    },
    // ...
}
</script>
React
App.js
import React from 'react';

import PolarChart, {
    Legend,
    Title,
    Font
} from 'devextreme-react/polar-chart';

class App extends React.Component {
    render() {
        return (
            <PolarChart ... >
                <Legend ... >
                    <Title ... >
                        <Font color="black" />
                    </Title>
                </Legend>
            </PolarChart>
        );
    }
}
export default App;

horizontalAlignment

Along with verticalAlignment, specifies the legend title's position.

Type:

String

Default Value: undefined
Accepted Values: 'center' | 'left' | 'right'

Use the HorizontalAlignment enum to specify this option when the widget is used as an ASP.NET MVC 5 Control or a DevExtreme-Based ASP.NET Core Control. This enum accepts the following values: Left, Center, and Right.

margin

Generates space around the legend title.

Type:

Object

Use the fields of this object to set the bottom and top margins to different values.

If the margins should be equal, set this option to a number.

placeholderSize

Reserves a pixel-measured space for the legend title.

Type:

Number

Default Value: undefined

subtitle

Configures the legend subtitle. The subtitle appears only if the title is specified.

Type:

Object

|

String

To specify only the subtitle's text, assign it directly to this option. Otherwise, set this option to an object with the text and other fields specified.

text

Specifies the legend title's text.

Type:

String

Default Value: null

verticalAlignment

Specifies the legend title's vertical alignment.

Type:

String

Default Value: 'top'
Accepted Values: 'bottom' | 'top'

Use the VerticalEdge enum to specify this option when the widget is used as an ASP.NET MVC 5 Control or a DevExtreme-Based ASP.NET Core Control. This enum accepts the following values: Top and Bottom.