Search found 9 matches

by joachim
Fri Feb 25, 2005 9:12 pm
Forum: .NET
Topic: get value from x-position
Replies: 1
Views: 4706

get value from x-position

I have a fastline series and add a point to x=1; y=10 and x=4; y=13. Now I nee do know the value of Y at x=2. Is there a Method that I can call?
by joachim
Fri Feb 25, 2005 9:07 pm
Forum: .NET
Topic: high-low with smooting?
Replies: 1
Views: 4796

high-low with smooting?

Is it possible to draw a highlow series where the high and low graphs are the result of the smoothing function? Can I apply the smooting function to a highlow series (both, high AND low)?
by joachim
Fri Feb 25, 2005 8:44 pm
Forum: .NET
Topic: series.Count != YValues.Length??
Replies: 1
Views: 4677

series.Count != YValues.Length??

I need to get all the series points in a double array to save them in a database, but double myVals[] = highlow.HighValues.Value; does not work properly, because the Value[] array of the series always seems to be some elements longer than I would expect from Series.Count. If I have to do the copying...
by joachim
Thu Feb 17, 2005 10:03 pm
Forum: .NET
Topic: grid with 2 custom x-axes
Replies: 1
Views: 4708

grid with 2 custom x-axes

How can I assign a separate grid to two separate Y-axis? I have a chart that has a custom Y-axis from 80-100% and the default Y-Axis from 0-80%. The first Y-Axis also has a custom X-Axis. But the grid of both chart areas reach over the whole chart. How can I change this to have one grid in the lower...
by joachim
Thu Feb 17, 2005 9:58 pm
Forum: .NET
Topic: color band on custom x-axis
Replies: 3
Views: 7376

Thank you very much! But how do I get the XPosValue from a DateTime Value?
by joachim
Mon Feb 14, 2005 7:41 pm
Forum: .NET
Topic: color band on custom x-axis
Replies: 3
Views: 7376

color band on custom x-axis

I have a chart with an upper and a lower part, each having its own y and x-axis. Now I want to draw a ban vertically on the lower part. I can assign the band to my custom x-axis, but it will draw over the whole chart area (lower and upper part). Can I also asign a y-axis to the color band so it will...
by joachim
Fri Feb 04, 2005 9:59 am
Forum: .NET
Topic: high-low function from many fastline series
Replies: 2
Views: 5859

Well, I wish it was that easy! :) My X-axes is say 400 units. My first line adds points at 201.22, 210.55, 250.37 My next line adds points at 201.99, 211.13, 250.22....and so on. Since the Add Position don´t align it will take quite a bit of calculation to get the High and Low Values e.g. at 201.00....
by joachim
Thu Jan 27, 2005 3:39 pm
Forum: .NET
Topic: high-low function from many fastline series
Replies: 2
Views: 5859

high-low function from many fastline series

Hello,
can I use a chart containing many FastLine series as a datasource for a high-low graph to get an resulting envelop (enclosing alle values of all FastLine series)?

Joachim
by joachim
Thu Jan 27, 2005 3:24 pm
Forum: .NET
Topic: null value in fastline
Replies: 1
Views: 4398

null value in fastline

How can I add a null value in FastLine.Add(double[], double[])? I have lots of points and cannot add them one by one because of performance.