legend.title.alignString
(default: "center")
The alignment of the title.
- "center" - the text is aligned to the middle.
- "left" - the text is aligned to the left.
- "right" - the text is aligned to the right.
Example
<div id="chart"></div>
<script>
$("#chart").kendoChart({
legend: {
title: {
text: "Chart Legend",
align: "left"
}
},
series: [
{ name: "Series 1", data: [1, 2, 3] },
{ name: "Series 2", data: [4, 5, 6] }
]
});
</script>
In this article