Search found 3 matches

by jasmine
Fri Jun 21, 2013 9:33 pm
Forum: JavaScript / HTML5
Topic: Auto-format x-axis with dates
Replies: 1
Views: 7506

Auto-format x-axis with dates

Hi, I am trying to plot multiple series as lines or areas on the same chart. I am having a problem where dates are spaced with no regard for the time interval between data points. If the first two points are six hours apart, and the second and third are a week apart, it displays the dates equally sp...
by jasmine
Thu Jun 20, 2013 1:34 pm
Forum: .NET
Topic: Binding at design time Compact Framework
Replies: 3
Views: 5667

Re: Binding at design time Compact Framework

I tried it with pieSeries.CheckDataSource() not commented, but it did not help. Right now I switch the code to draw the chart to Dim count As Integer = 1 For Each row As DataRow In dt.Rows pieSeries.Add(count, CDbl(row("PeriodUsage")), row("DeviceEndpointId").ToString) count += 1 Next This works fin...
by jasmine
Thu Jun 20, 2013 12:29 pm
Forum: .NET
Topic: Binding at design time Compact Framework
Replies: 3
Views: 5667

Binding at design time Compact Framework

Hi I am trying to bind a DataTable to a pie chart, but nothing is drawn what am I missing? Below is a snippet of the code. Private Sub DrawPieChart(ByVal dt As DataTable) Dim chart = GetChartObject() _reportContent.Controls.Clear() _reportContent.Controls.Add(chart) Dim pieSeries As New Steema.TeeCh...