Questions tagged [dotnetcharting]

DotnetCharting (.netCHARTING) is a commercial charting solution for the .Net framework, developed and maintained by Corporate Web Solutions Ltd., based in Vancouver, Canada.

20 questions
0
votes
0 answers

What tool can I use to create a chart similar to Google analytics behavior flow?

I want to create a, basically, Google analytic behavior flow but with data from a log file. Any tool, c# or JavaScript will work
ewassef
  • 286
  • 2
  • 13
0
votes
1 answer

charting - multiple axes are not supported on a per series basis

I am trying to use a third party chart from dotnetcharting. It plots the chart fine however the scale does not seem to work. I have a stock chart but the chart appears like a flat line because of the scale. _ch.Type = ChartType.Financial; …
mHelpMe
  • 6,336
  • 24
  • 75
  • 150
0
votes
1 answer

Dotnetcharting stacked bar chart displaying like regular bar chart

I have a dotnetcharting chart that I want to display as a Stacked Bar chart, but when it actually displays it shows up as a regular bar chart with the bars next to each other. I have Chart.YAxis.Scale = Scale.Stacked; and I checked and it is getting…
diego
  • 101
  • 1
  • 2
0
votes
1 answer

asp.net chart with code based on chart build with excel

I need to determine the data in a chart at run-time and put it in a .doc. To construct the document I use Aspose to replace elements in a .doc template. An example chart was made by importing an Excel workbook into Word, they mostly use the…
MrFox
  • 4,852
  • 7
  • 45
  • 81
-1
votes
1 answer

Why does this code throw ' Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index' exception?

I have a WinForm (let's call it Form2) with the following code to generate a chart: public void InitializeChartEKG() { Chart chartEKG = new Chart(); Series series1 = new Series { Color = Color.LawnGreen, …
1
2