Search found 3132 matches

by Sandra
Thu Feb 19, 2009 10:57 am
Forum: .NET
Topic: Arrow head to polar series
Replies: 3
Views: 6774

Hi asupriya, What does the polarBar.Pen.EndCap = Drawing2D.LineCap.ArrowAnchor does? It changes the ending of the series' pen in an arrow shape which may already be what you are looking fo. You'd clearer see what the property does if you hide serie's Pointer: PolarBar1.Pointer.Visible = False PolarB...
by Sandra
Thu Feb 19, 2009 10:06 am
Forum: .NET
Topic: asp webchart width
Replies: 3
Views: 7608

Hi simon,

Thanks for the information. We understand which is the problem now. Unfortunately TeeChart doesn't support setting dimensions in percentage as explained here: http://www.teechart.net/support/viewtopic.php?t=2572
by Sandra
Wed Feb 18, 2009 10:50 am
Forum: .NET
Topic: Charts Legend question : Checkbox placement
Replies: 10
Views: 15530

Hi, Neo
Could I put the checkbox in different position ?
At the moment this isn't possible I added on list of Feauter Reports We will consider if you add a new verison of TeeChart .NET


Thanks,
by Sandra
Wed Feb 18, 2009 9:48 am
Forum: .NET
Topic: Charts Legend question : Checkbox placement
Replies: 10
Views: 15530

Hi Neo,

If you want put checkbox in the legend you could do the following code:

Code: Select all

            tChart1.Legend.CheckBoxes = true;


I hope that my help you serve.
by Sandra
Wed Feb 18, 2009 9:31 am
Forum: .NET
Topic: asp webchart width
Replies: 3
Views: 7608

Hi simon,


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.attachments newsgroup or at our upload page



Thanks, in advances
by Sandra
Tue Feb 17, 2009 9:22 am
Forum: .NET
Topic: Polar series
Replies: 6
Views: 9787

Hi asupriya,

I think this problem is caused by the order of the series I suggest that use the following code,so you can get the correct value:

Code: Select all

  .XValues.Order = Steema.TeeChart.Styles.ValueListOrder.None
  .YValues.Order = Steema.TeeChart.Styles.ValueListOrder.None
by Sandra
Mon Feb 16, 2009 11:18 am
Forum: .NET
Topic: Polar series
Replies: 6
Views: 9787

Hi asupriya, My question is myPolar.add(myAngle, myRadius) or myPolar.add(myRadius, myAngle)? When you add values in Polar series always puts first value angle and then value radius , so your code is correct when you are using myPolar.add(myAngle,myRadius). 2. I need to access the above series (of t...
by Sandra
Mon Feb 16, 2009 10:31 am
Forum: .NET
Topic: set polar chart axes maximum value
Replies: 1
Views: 4372

Hi asupriya, if you set the max value you need add next code in your solution: With TChart1 //new: .Axes.Left.AutomaticMaximum = False .Axes.Bottom.AutomaticMaximum = False .Axes.Right.AutomaticMaximum = False .Axes.Top.AutomaticMaximum = False //Your code: .Axes.Left.Maximum = 1000 .Axes.Bottom.Max...
by Sandra
Mon Feb 16, 2009 10:12 am
Forum: .NET
Topic: Cursor Tool Query
Replies: 13
Views: 19545

Hi drillright40,



I could reproduce your problem and I have added to the list of Bug Report with number [TF02013864] we will try to fix it for next versions of TeeChart .NET.

Thanks,
by Sandra
Thu Feb 12, 2009 10:21 am
Forum: .NET
Topic: gantt bar values
Replies: 8
Views: 12447

Hi Pujol1986, We need to know what version number you use, the version number in a file "Release.txt" which is located in C: \ Program Files \ Steema Software \ TeeChart for. NET v3 find that the number is like for exemple:: TeeChart.NET version 3 Build 3.5.3225.32185 I see that when i change the va...
by Sandra
Thu Feb 12, 2009 9:37 am
Forum: .NET
Topic: Kind of Charts
Replies: 1
Views: 4171

Hi Pujol1986, I I recommend that You'll find information on how to use them in Tutorial6 - Working with Series, explains how to use date time and also you could find charts you can do something as in the All Features\Welcome !\Styles\Standard\Bar or Line or Fast Lines or you could also consult All F...
by Sandra
Thu Feb 12, 2009 9:10 am
Forum: .NET
Topic: gantt bar values
Replies: 8
Views: 12447

Hi Pujol1986, Could you say the exactly version builder if you using of TeeChart .NET?. 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.attachments newsgroup or at our upload pa...
by Sandra
Wed Feb 11, 2009 11:35 am
Forum: .NET
Topic: Custom axis title position?
Replies: 1
Views: 4511

Hi Chris, We find issue TChart1.Axes.Left.Title.Top property don't work. This is add in list Bug Report, with number [TF02013670] . If you want to palce the axis title right above the axis labels(column), I recomended that use AnnotationTool , because default It is at the top of the Left Axes. Thanks,
by Sandra
Wed Feb 11, 2009 10:51 am
Forum: .NET
Topic: gantt bar values
Replies: 8
Views: 12447

Hi Pujol1986, We have reproduced a similar code runs successfully and you should play the following code and check if you work: Private Sub GanttTool1_DragBar(ByVal sender As System.Object, ByVal e As Steema.TeeChart.Tools.GanttDragEventArgs) Handles GanttTool1.DragBar Me.Text = gantt1.StartValues(e...
by Sandra
Wed Feb 11, 2009 9:30 am
Forum: .NET
Topic: Polar chart display
Replies: 1
Views: 4483

Hi asupriya,

If you want remove or doesn't show Black lines you could make for exemple

Code: Select all

      Polar1.Pen.Visible = False
And If you want area transparency you could make as next code:

Code: Select all

     Polar1.Transparency = 50

Thanks,