Search found 9535 matches

by Yeray
Tue Feb 03, 2009 3:17 pm
Forum: .NET
Topic: Change color palette ?
Replies: 1
Views: 3736

Hi Chris,

Yes there is. Please take a look at the demo "All Features\Welcome !\Themes\Custom Palettes" to see a complete example of this.

I hope this will help.
by Yeray
Tue Feb 03, 2009 3:04 pm
Forum: .NET
Topic: Teechart setting rectangle height to negative value
Replies: 9
Views: 10872

Hi Christo,

Thank you for the code, it helped us to reproduce the problem so I've added it to the wish list to be fixed in future releases (TW16013810).
by Yeray
Tue Feb 03, 2009 2:37 pm
Forum: VCL
Topic: How to convert a pixel point to a chart point
Replies: 2
Views: 6510

Hi Marcel, I recommend you to use the axis function CalcPosPoint, for example: procedure TForm1.Chart1MouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer); begin Caption := 'X: ' + floattostr(Chart1.Axes.Bottom.CalcPosPoint(X)) + ' Y: ' + floattostr(Chart1.Axes.Left.CalcPosPoint(Y)); end;
by Yeray
Tue Feb 03, 2009 2:26 pm
Forum: .NET
Topic: Mark data source
Replies: 4
Views: 5526

Hi Pujol1986, To modify the marks without modifying the axis labels, you could use gantt's event GetSeriesMark, for example, to modify the first mark: Private Sub Gantt1_GetSeriesMark(ByVal series As Steema.TeeChart.Styles.Series, ByVal e As Steema.TeeChart.Styles.GetSeriesMarkEventArgs) Handles Gan...
by Yeray
Tue Feb 03, 2009 10:10 am
Forum: .NET
Topic: Custom drawing on the Chart Panel
Replies: 2
Views: 5155

Hi again Chris, Another possibility to have more control would be using a global boolean and change it, instead of your string, when the button is pressed: Dim drawText As Boolean Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load AddHandler TChart...
by Yeray
Tue Feb 03, 2009 9:55 am
Forum: .NET
Topic: Custom drawing on the Chart Panel
Replies: 2
Views: 5155

Hi Chris, The easiest way I can think is to declare your "Text" variable as global and to change the string when the button is pressed: Dim Text As String = "My Text" Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load AddHandler TChart1.AfterDraw, ...
by Yeray
Tue Feb 03, 2009 9:13 am
Forum: ActiveX
Topic: Bug in PDF Export?
Replies: 4
Views: 8533

Hi Raymond,

1. Yes, this is a known issue already in the wish list to be fixed as soon as possible (TV52011519).

2. You are right, it seems that the gradients aren't exported correctly to pdf. I've added it to the wish list.
by Yeray
Mon Feb 02, 2009 12:20 pm
Forum: VCL
Topic: Print corrupted with subchart tool
Replies: 9
Views: 15600

Hi Manuel,

You're right, it seems that transparencies applied to series in a subchart aren't printed well. I've added it to the wish list to be fixed in future releases
(TV52013806).
by Yeray
Mon Feb 02, 2009 8:47 am
Forum: ActiveX
Topic: text of invisible label
Replies: 2
Views: 4421

Hi hantom,

Have you tried the following?

Code: Select all

TChart1.Series(0).PointLabel(12)
by Yeray
Mon Feb 02, 2009 8:27 am
Forum: ActiveX
Topic: Legend with multiple series does not show checkboxes
Replies: 4
Views: 6274

Hi Landa, I haven't been able to reproduce it here. I've tried this code and does exactly the same in v5 than in v8: Private Sub Form_Load() TChart1.AddSeries scLine TChart1.AddSeries scLine TChart1.AddSeries scLine TChart1.Series(0).FillSampleValues 25 TChart1.Series(1).FillSampleValues 25 TChart1....
by Yeray
Fri Jan 30, 2009 11:30 am
Forum: VCL
Topic: Smooth function not working in 8.0.4????
Replies: 20
Views: 20807

Hi jonnyx,

Yes, this is a known bug (TV52010768) in the wish list to be fixed as soon as possible. It seems that this function doesn't work properly with some series.
by Yeray
Fri Jan 30, 2009 11:03 am
Forum: ActiveX
Topic: Strange behavior when DrawAllPoints property is set to FALSE
Replies: 5
Views: 9540

Hi Haianh, Here you have the explanation at the property help: property DrawAllPoints: Boolean; Unit Series Description The DrawAllPoints property controls how many points in a FastLine series will be displayed. The main reason of this property is to accelerate displaying thousands of points in a Fa...
by Yeray
Fri Jan 30, 2009 10:13 am
Forum: VCL
Topic: WarmPie example in Delphi - smooth pie chart
Replies: 8
Views: 17164

Hi marder, Notice that some of those charts were plotted using TeeChart for .NET v3 and some of Micrsoft .NET Framework drawing tecniques are not available in the VCL framework. However, I've sent to your forums registered mail an example reproducing similar pie to the one in the gallery using TeeCh...
by Yeray
Fri Jan 30, 2009 9:49 am
Forum: VCL
Topic: Antialias Tool - Bug when set border non visible
Replies: 3
Views: 6093

Hi marder,

I'm afraid I can't tell you an estimate date at this moment. I recommend you to be aware at this forum or subscribe to our RSS news feed for new release announcements and what's fixed on them.
by Yeray
Fri Jan 30, 2009 8:18 am
Forum: ActiveX
Topic: Datasources and null points
Replies: 4
Views: 6740

Hi Ashustosh,

Having the property "IgnoreNulls" to false:

Code: Select all

TChart1.Series(0).asFastLine.IgnoreNulls = False
you should set the property "TreatNulls" as you wish. The property:

Code: Select all

TChart1.Series(0).asFastLine.TreatNulls
And the three possible values:

Code: Select all

tnDontPaint
tnSkip
tnIgnore