4 Answers, 1 is accepted
0
0
Hi David,
Setting the HtmlChart's underlying Kendo widget's seriesdefaults.overlay.gradient to "none" will bring the target flat look. For example, you can set this option in the chart's client-side load event in a similar way:
<script>
function onChartLoad(chart, args) {
chart.get_kendoWidget().setOptions({
seriesDefaults: {
overlay: {
gradient: "none"
}
}
});
}
</script>
<telerik:RadHtmlChart ID="RadHtmlChart1" runat="server" Width="800" Height="500">
<ClientEvents OnLoad="onChartLoad" />
<PlotArea>
<YAxis MinValue="0"></YAxis>
</PlotArea>
</telerik:RadHtmlChart>
Regards,
Vessy
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
0
David
Top achievements
Rank 1
Iron
Iron
Veteran
answered on 13 Dec 2019, 06:59 PM
Very nice!
Thank you
0
Hi,
You are welcome, David :)
Regards,
Vessy
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.