Search found 24 matches
- Tue May 03, 2005 6:58 am
- Forum: .NET
- Topic: Metafile copy does not display zoom correctly
- Replies: 3
- Views: 6764
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 ...
- Fri Jan 14, 2005 2:00 pm
- Forum: .NET
- Topic: Rotating a 3D points series
- Replies: 2
- Views: 6494
- Fri Jan 14, 2005 9:01 am
- Forum: .NET
- Topic: Rotating a 3D points series
- Replies: 2
- Views: 6494
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;...
- Wed Jan 12, 2005 2:28 pm
- Forum: .NET
- Topic: Rotating 3D series
- Replies: 3
- Views: 7518
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...
- Fri Nov 05, 2004 7:22 am
- Forum: .NET
- Topic: Coloring single spots in Points and Points3D series
- Replies: 2
- Views: 6622
- Thu Nov 04, 2004 7:52 am
- Forum: .NET
- Topic: Coloring single spots in Points and Points3D series
- Replies: 2
- Views: 6622
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...
- Mon Jun 28, 2004 1:00 pm
- Forum: .NET
- Topic: Selecting multiple points
- Replies: 1
- Views: 6044
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...
- Thu Jun 17, 2004 8:27 am
- Forum: .NET
- Topic: Loosing data in a series labels
- Replies: 5
- Views: 12528
Thanks!
It works fine now.
Best regards
Elisabeth
Best regards
Elisabeth
- Wed Jun 16, 2004 11:39 am
- Forum: .NET
- Topic: Loosing data in a series labels
- Replies: 5
- Views: 12528
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 ...
- Mon Jun 14, 2004 3:02 pm
- Forum: .NET
- Topic: Loosing data in a series labels
- Replies: 5
- Views: 12528
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
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
- Mon Jun 14, 2004 11:05 am
- Forum: .NET
- Topic: Loosing data in a series labels
- Replies: 5
- Views: 12528
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...
- Tue Jun 08, 2004 12:46 pm
- Forum: .NET
- Topic: Colorline on the depth axix is drawn on the left axis
- Replies: 5
- Views: 8756
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...
- Thu May 06, 2004 7:18 am
- Forum: .NET
- Topic: Set initial zoom
- Replies: 9
- Views: 17755
- Wed May 05, 2004 3:08 pm
- Forum: .NET
- Topic: Set initial zoom
- Replies: 9
- Views: 17755
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: ...
- Wed May 05, 2004 9:05 am
- Forum: .NET
- Topic: Set initial zoom
- Replies: 9
- Views: 17755
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...