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
2
votes
0 answers

ZedGraph Only Graph non-holiday WeekDay Data?

I'm working with stock charting, and it would be super helpful to be able to graph with a DateTime being the x-axis datatype, and double being the y-axis datatype. Trouble is, with stock prices, there are no changes to the data on weekends or…
sooprise
  • 22,657
  • 67
  • 188
  • 276
2
votes
1 answer

How to Create a Log Axis and include all tic labels in Zedgraph (C#)

I have multiple graphs using Zedgraph in a project, and I have met with great success. The only issue I am running into is formatting a log type axis the way I want it. I managed to get rid of the scientific notation, but I want to include more…
2
votes
1 answer

ZedGraph, record position when mousedown x-axis, C#

I'm using ZedGraph to plot some line graphs in C#. What I'm trying to do is record the on screen x axis positions when you zoom in and out with the mouse as I want to work out the max and min values that are displayed.
moose333
  • 21
  • 3
2
votes
1 answer

Adding More Tick Labels To ZedGraph Axis?

I have tick labels on about every 4 ticks. This is great, but I want labels on every single tick, and I want to say that each tick should be an hour apart. How can I accomplish this?
sooprise
  • 22,657
  • 67
  • 188
  • 276
2
votes
1 answer

How to miss points in a ZedGraph line graph in C#

I have bit of code that draws nice line charts in ZedGraph. I can not change the code entirely, but I would like to have some of the lines not have a y value for each point on the x-axis. I can do this in Excel, but I don't know how to in…
ManInMoon
  • 6,795
  • 15
  • 70
  • 133
2
votes
1 answer

How can I implement an splitpane in ZedGraph?

On my Masterpane I have 2 panes. Is there a way to change the height of the panes with the mouse (like a sashpane or splitpane?)
user611387
  • 21
  • 2
2
votes
2 answers

Format DateAsOrdinal xAxis labels in ZedGraph

I have now changed my x axis to DateAsOrdinal, but I would like to improve the label format. I currently handle the XAxis.ScaleFormatEvent like this: Private Function OnXScaleFormatEvent(ByVal pane As GraphPane, ByVal axis As Axis, ByVal val As…
bretddog
  • 5,411
  • 11
  • 63
  • 111
2
votes
1 answer

Clear or remove all chart on zedgraph

How can I clear the chart of zedGraph? z1.GraphPane.CurveList.Clear(); command only clear the curve alone. I want to clear entire graph and replace with new chart line.
niksan karkee
  • 157
  • 1
  • 17
2
votes
1 answer

How can I prevent labels from overlapping each other in ZedGraph?

I have a ZedGraph stacked bar graph, and I want each bar to show its value on a label. So far no problem. But is there any built-in function to prevent labels from overlapping? Here is a screenshot showing the problem:
Fender
  • 3,055
  • 1
  • 17
  • 25
2
votes
1 answer

Multiple XAxis with ZedGraph

With ZedGraph, I can add multiple YAxis by doing the following: YAxis yAxis3 = new YAxis("Distance, m"); pane.YAxisList.Add(yAxis3); Is there a similar way to add an additional XAxis, that is not X2Axis? What I want to do is have the inside XAxis…
amccormack
  • 13,207
  • 10
  • 38
  • 61
2
votes
1 answer

Zed graph graphpane- change the color of the axis

i am trying to create a graph with zedgraph. I have already changed the color of everything. But I can't change the color of the black lines.They should be also white. Could someone help me? there have to be a solution Best regards Laoleo graph
laoleo
  • 21
  • 1
2
votes
1 answer

ZedGraph v. 5.15, multi y-axis alignment

The issue I have is when using two Y-axes (y1 and y2), wherein the y1 value is: (min,max) = (zero,positive) and the y2 value (min, max) = (negative, positive), in such case, the zero marking of y1 coincides with the max (negative) value of the y2…
2
votes
2 answers

ZedGraph radar chart

Does the ZedGraph API allow us to create a radar chart? An example of a radar chart can be seen at http://www.internet4classrooms.com/excel_files/radar_chart3.gif and is also listed below. Language used: C#, getting data from a database dynamically…
iemo-ed
  • 21
  • 1
  • 3
2
votes
1 answer

Zedgraph: How to limit pannings/scrolling on a Yaxis?

I have a bar chart that will never go below zero (never go negative), 0 y axis. How do I limit panning/scrolling so that the y0 line is always at the base of the graph? The requirement is to not be able to pan below pointy = 0 in view;
Philip Eki
  • 21
  • 2
2
votes
1 answer

C# graphing with ZedGraph

Is it possible to select a point and simply delete it off the graph so that the image can be saved without that point?
Alex Gordon
  • 57,446
  • 287
  • 670
  • 1,062