SMART datagrid v1.4 > Classes > ChartSeries

Back  Forward

DataLudi.ChartSeries.caption  propertyno-lite

Legend 등에서 시리즈를 나타내는 이름. 

이 값이 설정되지 않으면 name이 대신 사용된다. 

기본값은 null.

Getter
function caption(): String
Setter
function setCaption(value: String)
Code -1
    grid.setOptions({
        headerItems: [{
            type: "chart",
            chart: {
                series: [{
                    name: "serFemale",
                    caption: "Female",
                    ...
                }, {
                    name: "serMale",
                    caption: "Male"
                }]
            },
            ...
        }]
        ...
    });
See Also
name
ChartLegend
Examples
Group Footer Chart