Search found 3132 matches

by Sandra
Wed Feb 11, 2009 8:47 am
Forum: .NET
Topic: polar series - Is DrawAllPoints=false possible?
Replies: 1
Views: 4431

Hi asupriya,


For now there is no method to behave like DrawAllPoint for Polar series, I add this in list feature Request for new versions of .NET.


Thanks,
by Sandra
Tue Feb 10, 2009 10:01 am
Forum: .NET
Topic: gantt bar values
Replies: 8
Views: 12446

Hello Pujo1986, I recomended two ways for gets the stars values and ends values: First way: For i = 0 To gantt1.Count - 1 startVal = gantt1.StartValues(i) endVal = gantt1.EndValues(i) Next Second way: For i = 0 To gantt1.Count - 1 startVal = CType(TChart1.Series(0), Steema.TeeChart.Styles.Gantt).Sta...
by Sandra
Tue Feb 10, 2009 9:30 am
Forum: .NET
Topic: Cursor Tool Query
Replies: 13
Views: 19542

Hi Sayong, 1.I have uploaded code "CursorToolQuery.zip".In this code i have commented the "stripAxis" and "Unit".Still i am able to reproduce the bug related to cursor tool coming to middle after it reaches some extent.This happens very often when there is huge data plotted in the histogram so i hav...
by Sandra
Mon Feb 09, 2009 10:49 am
Forum: .NET
Topic: What property to suppress frame surrounding chart
Replies: 4
Views: 7767

Hi Chris! When you creat Chart for default Left and Bottom axes and Back wall are visible. If you desable Back wall you could make the changes you want to Right and Top Axes, you needs do the next line of code for desable Back wall: tChart1.Chart.Walls.Back.Visible = false; I hope you have been serv...
by Sandra
Mon Feb 09, 2009 9:41 am
Forum: .NET
Topic: Radar type PolarChart
Replies: 1
Views: 4377

Hi asupriya! I reproduced your issue with a simple exemple. I recomended that you genered a similar code using Polar.Pointer.Visible=false as the following example: Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load TChart1.Aspect.View3D = False Po...
by Sandra
Mon Feb 09, 2009 9:02 am
Forum: .NET
Topic: Cursor Tool Query
Replies: 13
Views: 19542

Hi Sanyog!

Please, could you send us a simple example project we can run"as-is" to reproduce the problem here? You can either post your files at news://www.steema.net/steema.public.attacment newgroups or at our upload page.



Thanks,
by Sandra
Fri Feb 06, 2009 11:17 am
Forum: .NET
Topic: Custom drawing using TeeChart's Canvas
Replies: 1
Views: 5281

Hi kevin! Two things: First: In TeeChart exist the FibonacciTool, that paint Fibonacci Retracement, You could watch Demo "What's New?\Welcome !\New Chart Tools\Fibonacci Arcs" as exemple. Second: If solution first, not that you want You could do similar code as the exemple: private void InitializeCh...
by Sandra
Fri Feb 06, 2009 9:02 am
Forum: .NET
Topic: Cursor Tool Query
Replies: 13
Views: 19542

Hello, drillright40

If you use right button, you are doing scroll for all objects in Chart no only of Series. Moreover, cursor leave the chart if it is fixed to a position that is outside the scale of the axes.

What I want do it specifically in your program?
by Sandra
Mon Feb 02, 2009 9:57 am
Forum: .NET
Topic: Find out Series index on Teechart MouseMove event
Replies: 2
Views: 7124

Hi Anil Kumar! We propose the following code for find your index series: private void tChart1_MouseMove(object sender, MouseEventArgs e) { for(int i=0; i<tChart1.Series.Count;++i) { int tmp = tChart1.Series[i].Clicked(e.X, e.Y); if (tmp != -1) { tChart1.Header.Text = "Series: " + i.ToString() + " Po...
by Sandra
Mon Jan 26, 2009 11:36 am
Forum: .NET
Topic: Bevels
Replies: 1
Views: 3988

Hi UserLS!


I reproduce your issues and I added your requests to the wish-list to be modified for next releases.


Thanks for your help


Best Regards,
Sandra Pazos



Steema Support Central
http://support.steema.com
by Sandra
Mon Jan 26, 2009 10:42 am
Forum: .NET
Topic: Marks on a pie chart
Replies: 12
Views: 12580

Hi UserLS!

Thanks for your information. We knew the issue. This is putting as bug report [TF02013775] and We moddified for new versions of TeeChart .Net



Best Regards,
Sandra Pazos



Steema Support Central
http://support.steema.com
by Sandra
Fri Jan 23, 2009 9:48 am
Forum: .NET
Topic: RectangleTool MouseEvent issue
Replies: 3
Views: 6981

Hi WD_Gordon!
I reproduce your issue and I have added your request to the wish-list to be investigated but I think that is a bug report[TF02013776].

Thank.


Best Regards,
Sandra Pazos


Steema Support Central
http://support.steema.com
by Sandra
Thu Jan 22, 2009 11:33 am
Forum: .NET
Topic: Is there a tool to draw shapes on a chart?
Replies: 1
Views: 4824

Hi WD_Gordon! I propos one solution, you can help. You, can use events OnMouseUp, and OnMouseDown as next exemple: OnMouseDown private void tChart1_MouseDown(object sender, MouseEventArgs e) { Steema.TeeChart.Styles.Shape sh = new Steema.TeeChart.Styles.Shape(tChart1.Chart); sh.Style = ShapeStyles.C...
by Sandra
Mon Jan 19, 2009 10:18 am
Forum: .NET
Topic: Avoid clipping of area series
Replies: 1
Views: 4489

Hi marvin966!

I reproduce your exemple, I have added them to the wish-list to be enhanced for next releases, bug request [TF02013754].

Thanks for your information.


Best Regards,
Sandra Pazos



Steema Support Central
http://support.steema.com
by Sandra
Fri Jan 16, 2009 11:27 am
Forum: .NET
Topic: Image on the background and walls
Replies: 4
Views: 7139

Hi UserLs! First point I have added them to the wish-list to be enhanced for next releases. Second point Also, if I set image for a back wall and use Tile style - the image will run outside of the right and bottom edges of wall. I reproduce your exemple, and I think that its a bug request [TF0201374...