Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
AI-Enhanced UI Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
hi,
i'm using code from documentation
http://www.telerik.com/help/aspnet-ajax/htmlchart-important-changes-regarding-the-series-declaration.html
Programmatic creation of the Area chart with the SeriesItems collection.
and i have error wich it's apear in pic
plz help
<
telerik:RadHtmlChart
runat
=
"server"
ID
"Chart1"
Width
"600px"
Height
"400px"
>
</
protected
void
Page_Load(
object
sender, EventArgs e)
{
AreaSeries areaSeries =
new
AreaSeries();
CategorySeriesItem csi1 =
CategorySeriesItem() { Y = 20 };
CategorySeriesItem csi2 =
CategorySeriesItem() { Y = 35 };
CategorySeriesItem csi3 =
CategorySeriesItem() { Y = 40 };
areaSeries.SeriesItems.Add(csi1);
areaSeries.SeriesItems.Add(csi2);
areaSeries.SeriesItems.Add(csi3);
Chart1.PlotArea.Series.Add(areaSeries);
}
See What's Next in App Development. Register for TelerikNEXT.