Questions tagged [zedgraph]

ZedGraph, written in C#, is an LGPL class library, user control, and web control for .NET, for creating various types of graphs and charts. It also provides many additional options, such as expanded user interface, interactivity options and export/printing tools.

Are you looking for a way to draw in .NET? Here's yet another charting class library with a high degree of configurability that is also easy to use.

ZedGraph is a set of classes, written in C#, for creating 2D line and bar graphs of arbitrary datasets. The classes provide a high degree of flexibility -- almost every aspect of the graph can be user-modified. At the same time, usage of the classes is kept simple by providing default values for all of the graph attributes. The classes include code for choosing appropriate scale ranges and step sizes based on the range of data values being plotted.

ZedGraph also includes a UserControl interface, allowing drag and drop editing within the Visual Studio forms editor, plus access from other languages such as and . ZedGraph is licensed under the LGPL.

Unfortunately further development on ZedGraph was halted in 2007 by the author John Howard Champion however there was still a backup site for some time hosted for grabbing documentation and an on-going wiki existed for support.

More information:

436 questions
0
votes
2 answers

How to get an array or a list of y axis data from the curve item

I have a list item(myList) on the Zedgraph, PointPairList myList = new PointPairList(); myList has some values in it, now I want to copy just the y values alone into a new array. My Trails: myList.toArray(); // Seems to return a complete set of…
SanVEE
  • 2,009
  • 5
  • 34
  • 55
0
votes
1 answer

Can I create a single bar beside each stacked bar using zedgraph?

I currently have some stacked bar graphs created using zedgraph which work very well. The stacked graphs are displaying costs and the stacked bar graph breaks them into different sections. I now want to add a single bar beside each stacked bar to…
0
votes
1 answer

Line in chaos when using Zedgraph

I draw a line in a zedgraph pane, but sometimes it will be like this: while it should be: i can't find anything wrong from my code, anyone know how to solve this, thanks very much! here is part of my code: MasterPane master =…
MangMang
  • 427
  • 1
  • 5
  • 17
0
votes
2 answers

Can I generate an image result from ZedGraph?

I am trying to use ZedGraph from MVC. Can I just generate an image result from ZedGraph and reference it from my view?
Curtis Yallop
  • 6,696
  • 3
  • 46
  • 36
0
votes
0 answers

Hide Numbers from ZedGraph in C#

I need to hide the numbers marked with the arrow, and if possible, show the blue numbers currently on the right side where now the red ones are... The red numbers are for the blue line, and I don't need them so I want to hide them... the blue…
asdasdad
  • 832
  • 3
  • 15
  • 27
0
votes
1 answer

ZedGraph - Part of line graph not showing

I'm using ZedGraph to plot a very large data set (ranges from 500,000 data points to as much as 30 million data points). The chart style is a line graph. In all, there are 3 separate plots of the data set after the data set has been passed through…
kevin628
  • 3,458
  • 3
  • 30
  • 44
0
votes
2 answers

How to change the mouse cursor in a C# application using Zedgraph library?

I could successfully change the mouse cursor in a vanilla C# app as explained here. I am using a C# app which uses Zedgraph dll for plotting charts. While the mouse pointer is on top of the chart it turns in to a crosswire. I need to change the…
Martin
  • 3,396
  • 5
  • 41
  • 67
0
votes
1 answer

How to auto clear temp directory for zedgraph images?

We use zedgraph webcontrols for charting in our asp.net (vb) web app. the temp directory for generated images fills up and now has reached 2GB+. Is there a way to automatically clear this directory or do I have to implement a nasty…
Elementenfresser
  • 711
  • 5
  • 18
-1
votes
1 answer

Real-time signal plot from USB 3.0 port in C#?

I want plot a very fast signal that came from USB3.0 port (it is actually signal of a sensor that transferred to my computer via FTDI:FT601 with 50MHz data rate) in a C# program. the program should be able to show real time data. the bandwidth of…
-1
votes
1 answer

How do I convert timespan to OAdate?

I am using Zedgraph and for x-axis, they require us to convert to OADate. I am plotting live stock chart and I want to show the last 60sec. So I use zedGraphControl1.GraphPane.XAxis.Scale.Max and zedGraphControl1.GraphPane.XAxis.Scale.Min. For the…
user3398315
  • 331
  • 6
  • 17
-1
votes
1 answer

Getting a certain value/point

Is there a way to get the value at x, y in the graph, where the symbol is? We can add as a parameter, "SymbolType.Star" etc, then ZedGraph will add the symbols at certain points x, y. I have have som values, and I want to make a bar chart, but right…
AomSet
  • 373
  • 4
  • 5
  • 14
-1
votes
1 answer

put the counter in the Xaxis in zedgraph

C#, W7, VS2010 and Zedgraph. In the Desktop App, has a numericUpDown ranging from 1 to 3300. Each 1 of the numericUpDown is equal 1 second. On ZedGraph, how to put this numericUpDown in Xaxis in this format 00:00~55:00, with an interval of 5…
user1635148
  • 49
  • 1
  • 3
  • 7
-1
votes
1 answer

Positioning an ImageObj in ZedGraph

I'm using ZedGraph to plot some data. I need to show marked areas of the line graph. To do that, I use a red exclamation point. I'd like the exclamation point to appear above the top border of the chart, as in the picture below. The exclamation…
kevin628
  • 3,458
  • 3
  • 30
  • 44
-2
votes
1 answer

How many types of bar charts are available in ZedGraph?

How many types of bar charts are available in ZedGraph? And what are they?
kik
  • 247
  • 1
  • 5
  • 15
-2
votes
1 answer

New textBox and Label obscuring my zedGraph

I have a c# form which is to allow the user to specify a differential equation (dy/dt = -lambda*y) to solve both exactly and approximately (by entering desired values of the intital condition, time step and lambda into textBoxes). Clicking a button…
George Tomlinson
  • 1,871
  • 3
  • 17
  • 32
1 2 3
29
30