我有一个图表,其中标签包含两个部分,一个名称和一个数字。我希望数字出现在名称下方,由<br/>
标签说明:
我加载图表的内容,并在我的控制器中设置标签:
当我尝试在标签上使用模板时,换行后的文本与图表的其余文本一起出现在图表底部:
javascript代码:
$("#chart1").kendoChart({
theme: "BlueOpal",
title: { text: "My reported hours" },
legend: { position: "bottom" },
seriesDefaults: { type: "column" },
dataSource: {
transport: {
read: {
url: dataUrl,
dataType: "json"
}
}
},
series: [{ field: "SeriesField" }],
categoryAxis: {
field: "CategoryAxis",
labels: {
rotation: 0,
template: "#=value#<br/>newline"
},
},
valueAxis: {
labels: { format: "{0}h" },
min: 0
},
tooltip: {
visible: true,
template: "#= formatDecimal(value) #<br/> newline"
},
seriesClick: onSeriesClick
});
我如何使换行符起作用?