i Recently discovered DotNet.HighCharts project, is there any way how can i use it in winform application and view the chart in webBrowser.
I tried this but its not working,
DotNet.Highcharts.Highcharts chart = new DotNet.Highcharts.Highcharts("chart")
.SetXAxis(new XAxis
{
Categories = new[] { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" }
})
.SetSeries(new Series
{
Data = new Data(new object[] { 29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4 })
}).SetTitle(new Title { Text = "12223" });
webBrowser1.DocumentText = chart.ToHtmlString();