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

zedgraph doesnt apply the changes to the myPane

I am trying to create a visual representation of my data, I have already populated point pair lists and I am creating my chart as follows: public void CreateChart(ZedGraphControl zgc) { GraphPane myPane = zgc.GraphPane; //set…
Silvia Stoyanova
  • 271
  • 2
  • 6
  • 20
0
votes
1 answer

Suggestions using Zedgraph and AdvancedHMI Realtime application

I'm new to Stackoverflow. I'm asking for any suggestion about using Zedgraph along with AdvancedHMI. Currently I had developed a c# application that gathers "real-time" data from a PLC via Ethernet. I'm using a timer to colect data every 10ms, and…
0
votes
1 answer

ZedGraph - Force all graph panes to be the same size

I am using the ZedGraph control (zgc) to create individual stacked bar charts and display them in a single stacked column as shown in the image below. The issue that I am having is that I have no control over the number of panes that are displayed…
user1017477
  • 864
  • 1
  • 12
  • 20
0
votes
1 answer

Zedgraph horizontal line across the bar chart needed

I am using ZedGraph http://www.codeproject.com/Articles/5431/A-flexible-charting-library-for-NET?fid=26087&fr=11#xx0xx and I want to plot vertical bars and then have a horizontal line across the entire plot area. It only seems to go to the ends of…
user1261710
  • 2,539
  • 5
  • 41
  • 72
0
votes
1 answer

ZedGraph remove pie slice?

I am trying to use the ZedGraphControl to create a pie chart. I am able to add pie slices by using the zedGraphControl.GraphPane.AddPieSlice (30, Color.Red, Color.White, 45f, .0, "Data"); Method, but there does not seem to be any RemovePieSlice Or…
Kyle
  • 17,317
  • 32
  • 140
  • 246
0
votes
1 answer

ZedGraph - Timer or Thread?

Currently, I am using a thread to autofill a zedgraph chart. The problem is that it is very slow and that is not good for the production. Knowing that: 1. There is a Thread running background to get fresh data from remote server and store them in a…
DeathCoder
  • 145
  • 1
  • 4
  • 19
0
votes
1 answer

How can I display a ZedGraph on the screen?

I need to draw graphics for my project so I searched zedgraph library.I looked at this sample codes for learning that library. But I can't display the graphics on the screen. Plese help me. Here is the code. namespace gafikdeneme { class…
ysm
  • 11
  • 3
0
votes
3 answers

Drill down charts for asp.net

My employer has asked me to create some web pages with various charts - one of the requirements is to have a click through ability for further detials. I am looking for sugestions on chart libraries that I could use. c#, .net 2.0 UPDATE: I used…
Brad
  • 20,302
  • 36
  • 84
  • 102
0
votes
1 answer

How to make a dynamic curve with ZedGraph in C#?

I need to create a dynamic graph in ZedGraph where each of the points on a new curve are functions of points on the previous curve. Giving the overall effect the whole curve is moving/evolving on the axis. I have a loop in which I calculate the next…
user1763430
  • 77
  • 1
  • 7
0
votes
0 answers

ZedGraph, numbers gather in a region of number line when graph is scaled

I scale graph but I have problem like in the image (http://postimage.org/image/74ra418yv/). This is a simulation window, so each pointpairlist is calculated for each unit time. I don't show all of them at the same time. So I create CalculateScale…
Doctor
  • 788
  • 9
  • 12
0
votes
1 answer

Evolve a Graph ZedGraph

I have a method that returns the PointPairList of a graph at time t, but I want to use it to plot a "moving" graph, by "moving" I mean the graph should evolve in time, does anyone have any clue on how I can do this.I tried using…
KillaKem
  • 995
  • 1
  • 13
  • 29
0
votes
3 answers

How to scroll axis scale outside the graph of Zedgraph using the mouse event

Is it possible that the axis scale outside the graph could be scale using the mouse event "mouse_down and hold" and move up or down in y-axis the same with the x-axis move left or right? ex. when I trigger MouseDownEvent and hold the x-axis scale…
Cold
  • 35
  • 2
  • 8
0
votes
1 answer

Run Dijkstra's Algorithm on a List in C#

I have a list of Point types in C#. I want to run Dijkstra's algorithm on this list of points where the first entry in the list is the starting location. Is there a way of doing this using an existing library? If such library doesn't exist, is there…
Jetnor
  • 521
  • 2
  • 11
  • 26
0
votes
1 answer

Two questions regarding TextObj in ZedGraph, C#

I use scatter plot in Zedgraph and trying to add a trend line over it. Now, I have two questions: How should I make sure that the textobj containing the equation and R2 of trendline is always on the upper left corner of the graph inside the graph…
Amir
  • 625
  • 1
  • 11
  • 26
0
votes
1 answer

zed graph: how to make my graph start at 0,0

I want my graph to start at 0,0 but right now it is starting at the time that the data starts (because i don't know what a better alternative for xdatamember would be to get my desired results. any suggestions? private void Form1_Load(object…
user1556084
  • 29
  • 1
  • 3
  • 12