The setting information object related to chart series item label.
It is used as ChartSeries.label property. Since it is created when initialize ChartSeries object, you do not need to directly create this class object.
var chart = {
series: [{
label: {
position: DataLudi.ChartLabelPosition.CENTER,
styles: {
fontSize: 12
}
},
...
}],
...
};