Search found 24 matches

by Lizabeth
Tue May 03, 2005 6:58 am
Forum: .NET
Topic: Metafile copy does not display zoom correctly
Replies: 3
Views: 6516

Metafile copy does not display zoom correctly

Hi! Have used the code below to copy the chart to the clipboard. However if the chart is zoomed in the y-axis the copy comes out with huge margins above and under the chart. Since I need to paste the copy correctly into a graphics object together with other stuff i would like a way to copy only the ...
by Lizabeth
Fri Jan 14, 2005 2:00 pm
Forum: .NET
Topic: Rotating a 3D points series
Replies: 2
Views: 6282

Hi again!

When will that release hit the market :) ?

Best regards
by Lizabeth
Fri Jan 14, 2005 9:01 am
Forum: .NET
Topic: Rotating a 3D points series
Replies: 2
Views: 6282

Rotating a 3D points series

Hi! I have a 3D point series that i rotate. Having rotated the chart 90 degrees the spots become flat. Is there a way to see round spots even when rotating the chart. I know that the ActiveX version supports OpenGL and that you can turn that on through code like: TChart1.Aspect.OpenGL.Active = true;...
by Lizabeth
Wed Jan 12, 2005 2:28 pm
Forum: .NET
Topic: Rotating 3D series
Replies: 3
Views: 7218

Rotating 3D series

Hello, I have a 3D series where the pointer style is circles. When rotating the chart 90 degrees the spots become flat. Is there a way to display the spots as a circle even when the chart is rotated? (I have tried to use the style sphere, but then I get a square (that also gets flat when I rotate it...
by Lizabeth
Fri Nov 05, 2004 7:22 am
Forum: .NET
Topic: Coloring single spots in Points and Points3D series
Replies: 2
Views: 6412

Hello,

It worked. Thank you!

Best regards
Lizabeth
by Lizabeth
Thu Nov 04, 2004 7:52 am
Forum: .NET
Topic: Coloring single spots in Points and Points3D series
Replies: 2
Views: 6412

Coloring single spots in Points and Points3D series

Hello, I have a problem with coloring spots in one series in different colors in version 1.1.1544.23908. In a previous version (1.0.1189.31308) this problem did not exist. Unfortunately I can not use the last version of T-chart because we are to close to release and the only two versions we have tes...
by Lizabeth
Mon Jun 28, 2004 1:00 pm
Forum: .NET
Topic: Selecting multiple points
Replies: 1
Views: 5751

Selecting multiple points

Hello! I want to let the user be able to press the right mouse button, drag the mouse and then finally release the mouse button in a chart, to "select" an area within that chart. (Similar to how you select an area when you zoom, only that you use the left mouse button then.) When the user releases t...
by Lizabeth
Thu Jun 17, 2004 8:27 am
Forum: .NET
Topic: Loosing data in a series labels
Replies: 5
Views: 11805

Thanks!

It works fine now.

Best regards
Elisabeth
by Lizabeth
Wed Jun 16, 2004 11:39 am
Forum: .NET
Topic: Loosing data in a series labels
Replies: 5
Views: 11805

Labels missing

Hi, The problem seems to occur when x-values are not read into the series in escalating order. The only change I have made to your code is to produce the x-values randomly, see the code below: private void InitializeChart() { Random rnd = new Random(); scoreDataX = new double[100]; scoreDataY = new ...
by Lizabeth
Mon Jun 14, 2004 3:02 pm
Forum: .NET
Topic: Loosing data in a series labels
Replies: 5
Views: 11805

Latest version problem

Hi again,

I have made a rollback to the previous version of T-chart and now everything works fine...Seems to be a bug in the last version...

Best regards
Elisabeth
by Lizabeth
Mon Jun 14, 2004 11:05 am
Forum: .NET
Topic: Loosing data in a series labels
Replies: 5
Views: 11805

Loosing data in a series labels

Hi, I add points to a series using the code: for(int i = 0; i < scoreDataX.Length; i++) { scoreSeries2D.Add((double)scoreDataX , (double)scoreDataY , scorePlotIDs .ToString(), defaultColor); Debug.WriteLine("X " + i.ToString() + ": " + scoreDataX .ToString() + " Y " + i.ToString() + ": " + scoreData...
by Lizabeth
Tue Jun 08, 2004 12:46 pm
Forum: .NET
Topic: Colorline on the depth axix is drawn on the left axis
Replies: 5
Views: 8301

Colorline on the depth axix is drawn on the left axis

Hi, I have a plot with a points3d series added to it. I need to draw a colorline on each axis (left, bottom, depth). The left and bottom line are drawn correctly when I use the code: scorePlot.Tools.Add(yLine); yLine.Value = 0; yLine.Axis = scorePlot.Axes.Left; scorePlot.Tools.Add(xLine); xLine.Valu...
by Lizabeth
Thu May 06, 2004 7:18 am
Forum: .NET
Topic: Set initial zoom
Replies: 9
Views: 16719

Hi,

It will be easier for me to hold a variable on my own to fix this. So I will solve the problem that way instead.

But I think it would be neat if there was a property to set/get the zoom factor of the plot! It might be needed by several developers/applications.

Best regards
Elisabeth
by Lizabeth
Wed May 05, 2004 3:08 pm
Forum: .NET
Topic: Set initial zoom
Replies: 9
Views: 16719

Setting initial zoom

Hi, This tricking turns out not to work anyway. The setting of Automatic to true, fits the series back into the window, before I set the zoom. This means that my buttons that should zoom the chart in or out 10% from the initial zoom, zooms the chart in/out from the chart fit to the window. Example: ...
by Lizabeth
Wed May 05, 2004 9:05 am
Forum: .NET
Topic: Set initial zoom
Replies: 9
Views: 16719

Set initial zoom

Hi, Yes, this is almost what I need. But I have set up a test project using your code and there is still one thing that does not work: private void button2_Click(object sender, System.EventArgs e) { tChart2.Axes.Left.Automatic = true; tChart2.Axes.Bottom.Automatic = true; tChart2.Zoom.ZoomPercent(40...