-
as seen on Stack Overflow
- Search for 'Stack Overflow'
In Zedgraph building a line chart. I have some requirements for axes labels which can't be produced automatically so inspired by this other Stackoverflow answer I'm building a custom axis.
I can draw the Axis OK and I can place the labels but I want to draw my own tics. To do this I'd like to know…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have a Zedgraph textobj which I want to place always in the same x, y position (ASP.NET image). I noticed that the text doesn't always show in the same starting x position. It shifts depending on the text's length. I tried to have the text to have the same length by padding it with spaces. It helped…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I want to draw graphs in my mobile application
but m not able to use zedgraph..
it says its unusable in mobile forms..
any suggestions
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
In ZedGraph how to show text labels for each point and in the XAxis all together?
EDIT:
If I do
myPane.XAxis.Type = AxisType.Text;
myPane.XAxis.Scale.TextLabels = array_of_string;
I get labels on the XAxis like this
And if I do
for (int i = 0; i < myCurve.Points.Count; i++)
{
PointPair…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
For a learning exercise, i'm wanting to create candlestick (stock) graphs for stocks using zedgraph.
Now on google finance, i can get daily open-high-low-close data which is perfect for making these graphs, but i'm wanting to create intra-day graphs, eg open-high-low-close data for an hour (or…
>>> More