-
Simple patch to add a x y and z parameters to the query string generated for link urls.
This makes processing easier for certain situations. For example, using dates on the x-axis, you can determine the exact day that was clicked, instead of having to go back through the original source data (eg, perform a 2nd query), to find the date corresponding to the nth data point.
sample resulting...
12:14AM UTC on Jan 18 2008 in ZedGraph
-
Another update:
This is directly caused by DateScale::CalcDateStepSize() setting scale._majorUnit
In the case with my example code, on line 563 of DateScale.cs, range == 127.035, which is > Default.RangeDayDay (10.0), so it sets scale._majorUnit = DateUnit.Day. I don't know enough about ZedGraph to know what this is supposed to be doing, or why it does it (when I am explicitly setting a...
09:51PM UTC on Jan 15 2008 in ZedGraph
-
Same bug exists in ZedChartControl, sample to reproduce:
Sub BuildChart(ByVal graph As ZedGraph.ZedGraphControl)
Dim pane As ZedGraph.GraphPane = graph.GraphPane
' create point lists
Dim points As New ZedGraph.PointPairList
points.Add(New ZedGraph.XDate(New Date(2007, 7, 18, 14, 42, 28)), 70)
points.Add(New ZedGraph.XDate(New Date(2007, 7, 27,
09:34PM UTC on Jan 15 2008 in ZedGraph
-
I should also add, this is using ZedGraphWeb 5.1.4 in .NET 2.0.
08:36PM UTC on Jan 15 2008 in ZedGraph
-
I have a chart with XAxis type set to Date, and it seems that Xaxis.Scale.MajorUnit is always treated as ZedGraph.DateUnit.Day, regardless of Xaxis.Scale.MajorUnit. This can be seen by setting:
.MajorUnit = ZedGraph.DateUnit.Day
.MajorStep = 60
.MinorUnit = ZedGraph.DateUnit.Month
.MinorStep = 1
and with sample data ranging over several months. I'll attach a sample of the above settings...
08:35PM UTC on Jan 15 2008 in ZedGraph
-
gregmac committed revision 5071 to the FreePBX SVN repository, changing 1 files.
04:05AM UTC on Sep 20 2007 in FreePBX
-
gregmac committed revision 5068 to the FreePBX SVN repository, changing 3 files.
04:01AM UTC on Sep 20 2007 in FreePBX
-
gregmac committed revision 4993 to the FreePBX SVN repository, changing 176 files.
10:07PM UTC on Sep 02 2007 in FreePBX
-
gregmac committed revision 4889 to the FreePBX SVN repository, changing 2 files.
03:16AM UTC on Aug 16 2007 in FreePBX
-
gregmac committed revision 4888 to the FreePBX SVN repository, changing 2 files.
03:11AM UTC on Aug 16 2007 in FreePBX