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
1 answer

Make dynamically number of tab pages with ZedGraph in WinForm C#

I have data for several days. I want to plot that data, one day in one tab page. The tab page can change dynamically corresponding with the number of the day. Previously, I always make a static page in the design mode. I use ZedGraph control to…
ehmind
  • 265
  • 3
  • 10
0
votes
1 answer

Zedgraph - Change X-Axis from points to frequency

i have a working program where i can add an array to a Zedgraph and show this in a form. Now i only want to change the display of the x-axis from points (0..400) to frequency (9e3..6e9 Hz). Here are my currently working functions: public void…
Thomas Mann
  • 99
  • 3
  • 19
0
votes
1 answer

ZedGraphControl jumps around in VS Gui Builder On Build

I've got a Windows form with a ZedGraphControl, and for some reason whenever I rebuild it in Visual Studio while the gui builder is open, the control randomly resizes itself & changes its position. Here's a screen capture showing the…
J23
  • 3,061
  • 6
  • 41
  • 52
0
votes
2 answers

Start pause and resume the serial data plotting on graph

Is there a control in windows form that would allow me to pause the ongoing serial data receiving process, because I need to check and verify the data that is being plotted on the graph. Once checked, I need to resume the process. It would be like a…
Porcupine
  • 13
  • 4
0
votes
3 answers

c# Original error:object reference not set to an instance of an object error

I have a code that allow user to select files and get the data assign into array. private void Load_data_Click(object sender, EventArgs e) { Stream myStream = null; OpenFileDialog openFileDialog1 = new OpenFileDialog(); …
Ren
  • 765
  • 4
  • 15
  • 42
0
votes
1 answer

Custom colors on bar chart using Zedgraph library

Am using Zedgraph chart library but I can't seem to be able to color a bar graph depending on a specific condition. Am following along with the example found on this tutorial. In my case, if the value isn't above 50 -which is the student.pass_mark…
lukik
  • 3,919
  • 6
  • 46
  • 89
0
votes
2 answers

C# Sine Cosine ZedGraph

I'm developing a sine cosine zedgraph control where user are allowed to select the .txt file contain data from the explorer then generate the graph. Here's the code: private void GraphSetup() { // Lets generate sine and cosine wave …
Ren
  • 765
  • 4
  • 15
  • 42
0
votes
2 answers

ZedGraph doesn't works in Visual Studio 2012

Anyone used ZedGraph in VS2012 ?? When i try load component i get error message that "There are not Component in zedgraph.dll that can be placed on toolbox". I can't find info does zedgraph works on VS2012. Please recommend me some library to plot…
bred_one
  • 147
  • 3
  • 15
0
votes
1 answer

ZedGraph scrolling left truncates data

I am using a ZedGraphControl in a WindowsForms project in C#. The ZedGraphControl is V5.1.5. The data in the control is static and I add it all before the form is shown. The X axis of the data consists of numbers indicating seconds offset from the…
dtaylor
  • 997
  • 3
  • 10
  • 26
0
votes
1 answer

Clear then restore List in zedGraph

I designed a real time graph application using zedGraph class RollingPointPairList(). User should be able to hide specific curve when checkBox is checked and show it when unchecked. The problem is that it never shows a curve again once it had been…
0
votes
1 answer

Adding TextLabels to ZedGraph so that all values are shown

When adding TextLabels to the X-Axis, zedgraph seems to insist on adding the labels each 10th step (So it seems). Explaination follows. I have an array with values, based on some calculation. The first values in the array are on the following…
user1960836
  • 1,732
  • 7
  • 27
  • 47
0
votes
1 answer

How to change ZedGraph Y axis order?

I have a ZedGraph control with multiple Y axis, and I want to allow the user to change the order in which the Y axis are displayed. Unfortunately there is no Move method on the YAxisList object of the GraphPane, like it exists on the CurveList. The…
Larry
  • 17,605
  • 9
  • 77
  • 106
0
votes
1 answer

ZedGraph PointPairs only 1 symbol

I'm hoping someone may have the answer to this one I've added some "PointPair" values to a ZedGraph graph, and this all works fine. However, when I show Symbols, it only shows the symbol on the high value, not the low value. Does anyone know what…
Paul
  • 9,409
  • 13
  • 64
  • 113
0
votes
2 answers

ZedGraph: How to add time (usecs) in X-Axis (not date)

Currently my graph only shows the index in the x-axis and current in y-axis. Now I added additional parameters (NumberOfPoints =1024, TimeImtervall = 0.0003s) to the graph-function. What I finally want is that the x-axis show time-values and not the…
Thomas Mann
  • 99
  • 3
  • 19
0
votes
1 answer

Using ZedGraph as plotter(real time), force labels

I'm stuck on two problems involving a Zedgraph. I need to make it behave like a plotter. I have achieved this by setting the min and max value on the X scale when I need to update (the values are already in the graph, its a simulation). Now the…
Jens Vossnack
  • 237
  • 1
  • 10