This question is locked. New answers and comments are not allowed.
How would I set the chart title font (either declaratively in HTML or programmatically) of a RadChart? I have had success setting other properties of the chart title, such as the alignment and color as such:
but when I try to set the chart title font as follows, it simply ignores the request:
What is the proper way to set the chart title font?
var chart = document.getElementById("chartContainer").winControl;chart.title.text = "Positions by Department";chart.title.color = "black";chart.title.align = "left";but when I try to set the chart title font as follows, it simply ignores the request:
chart.title.font = "Times New Roman";What is the proper way to set the chart title font?