Below is the call I make within my C# application plotting the X and Y axis to a scatter graph.
// Push the two dimensional array which contains all the Y Data for each trace
gph.PlotXYAppendMultiple( oPlot.Data, dblData );
dblData value
{Dimensions:[1, 3]}
[0, 0]: 144.456
[0, 1]: 144.456
[0, 2]: 144.45600000000002
oPlot.Data
{Dimensions:[3]}
[0]: 1.2
[1]: 2.3
[2]: 3.4
When this call is made I receive an "Argument Exception" with the message "minimum" As per the Argument Exception
the gph.Plots[0].ProcessSpecialValues does = true and the x and y data does not contain special values at the same index.
Now,
If I were to change the dblData[ 0 , 2 ] = 144.45600000000005 I would not get the ArgumentException.
Does this have something to do with the size of the double dabbling in the territory of how big a double can be?
Thanks for any advice,
matt
The Only Easy Day Was Yesterday.