dotnethighcharts

Opening a Column chart after clinking on DRILLEDOWN PIE Charts in dotnet highcharts

六月ゝ 毕业季﹏ 提交于 2019-12-25 01:46:25
问题 I am using Highsoft.Web.Mvc.Charts .I have a PIE chart and its drilled down NOW I want to open a column chart after clicking on any point of drilled down pie chart. My code in view is <script src="https://code.highcharts.com/highcharts.js"></script> <script src="https://code.highcharts.com/modules/exporting.js"></script> <script src="https://code.highcharts.com/modules/drilldown.js"></script> @using Highsoft.Web.Mvc.Charts @{ Highcharts chart2 = new Highcharts { Title = new Title { Text =

can we make nested donut charts in highcharts?

我的未来我决定 提交于 2019-12-23 03:00:55
问题 I am using highchart library .can we make nested dount chart in hightcharts ? I am able to make donut chart .I want to make nested the same thing inside the donut chart . In other words I make donut chart can I make same thing inside the donut chart here is my code http://jsfiddle.net/oupmgvjy/2/ I am taking help from this http://www.highcharts.com/demo $(function () { Highcharts.chart('container', { chart: { plotBackgroundColor: null, plotBorderWidth: 0, plotShadow: false }, title: { text:

DotNet.Highcharts , Is there any way to use it in Winform application?

只愿长相守 提交于 2019-12-13 03:51:28
问题 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

Converting double?[ ] to object[ ] in c#

♀尐吖头ヾ 提交于 2019-12-11 12:08:42
问题 I am using DotNet.Highcharts in my C# program. The data element for series items requires an object[] . The data I’m using is coming from a LINQ method as shown below. The code below also converts the double?[] to a List<object> then to the desired object[] . double?[] data = (from c in context.CTSeries select c.CTDI).Take(1000).ToArray(); List<object> dataList = new List<object>(); foreach (double? ctdi in data) { dataList.Add( Convert.ChangeType(ctdi, typeof(Object))); } object[] dataArray

DotNet.Highcharts: Cost not plotted against the correct date

大城市里の小女人 提交于 2019-11-30 09:02:51
问题 I'm creating a DotNet.Highcharts chart that is using data from two tables: Expenditures and Incomings. I am using an SQL statement to create a DataTable for each. The first (for Incomings) called Dt contains IncCost and IncDate . The second (for Expenditures) called Dt2 contains ExpCost and ExpDate . I am able to plot IncCost against IncDate and ExpCost against ExpDate . The problem arises when I try to concatenate IncDate and ExpDate (final) as the cost for IncCost and ExpCost is plotting

DotNet.Highcharts: Cost not plotted against the correct date

岁酱吖の 提交于 2019-11-29 11:07:29
I'm creating a DotNet.Highcharts chart that is using data from two tables: Expenditures and Incomings. I am using an SQL statement to create a DataTable for each. The first (for Incomings) called Dt contains IncCost and IncDate . The second (for Expenditures) called Dt2 contains ExpCost and ExpDate . I am able to plot IncCost against IncDate and ExpCost against ExpDate . The problem arises when I try to concatenate IncDate and ExpDate (final) as the cost for IncCost and ExpCost is plotting against the position of the date in (final), and not the actual date it is related to. Here are the calls