Search found 9540 matches

by Yeray
Mon Apr 16, 2007 8:57 am
Forum: VCL
Topic: problem with CursorTool after export
Replies: 5
Views: 11380

Hi guzial,

sorry for the bad link to post. The issue you requested is discussed in that other one.
by Yeray
Mon Apr 16, 2007 8:09 am
Forum: VCL
Topic: Scaling Max value less than 1
Replies: 2
Views: 7037

Hi Trev, We couldn't reproduce your problem here using teechart 7.07. What version are you using? The following code works for us: Chart1.Axes.Left.AutomaticMaximum := false; Chart1.Axes.Left.Maximum := 0.4; Also you can try to type casting as follows: Chart1.Axes.Left.AutomaticMaximum := false; Cha...
by Yeray
Fri Apr 13, 2007 10:40 am
Forum: VCL
Topic: trnasparency doesn't work with export?
Replies: 5
Views: 12976

Hi guzial,

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

Thanx in advance
by Yeray
Fri Apr 13, 2007 10:30 am
Forum: VCL
Topic: problem with CursorTool after export
Replies: 5
Views: 11380

Hi guzial,

Take a look at this post where there's a discussion about the same problem.
by Yeray
Fri Apr 13, 2007 10:07 am
Forum: VCL
Topic: trnasparency doesn't work with export?
Replies: 5
Views: 12976

Hi guzial,

you can try doing something like this:

Code: Select all

Chart1.ExchangeSeries(Series1,Series2);
by Yeray
Fri Apr 13, 2007 9:31 am
Forum: ActiveX
Topic: Bar chart question
Replies: 3
Views: 8036

Hi amadeus, The code bellow shows you an example of how you can change the labeltext using OnGetAxisLabel event: Private Sub TChart1_OnGetAxisLabel(ByVal Axis As Long, ByVal SeriesIndex As Long, ByVal ValueIndex As Long, LabelText As String) If Axis = 3 Then LabelText = "Q" & CStr(CInt(LabelText) + ...
by Yeray
Fri Apr 13, 2007 8:48 am
Forum: VCL
Topic: trnasparency doesn't work with export?
Replies: 5
Views: 12976

Hi guzial,

Yes, this is a known limitation. Existing PDF export filter does not support transparency (missing pdf implementation). We have this on our wish list for next major TeeChart release. In the meantime the workaround is to disable (set it to 0) the transparency.
by Yeray
Thu Apr 12, 2007 8:03 am
Forum: VCL
Topic: Chartlistbox
Replies: 2
Views: 6236

Hi Richard,

You should use something as following:

Code: Select all

ChartListBox1.ClearItems;
ChartListBox1.AddItem('Series3',Series3);
ChartListBox1.AddItem('Series4',Series4);
ChartListBox1.AddItem('Series5',Series5);
by Yeray
Tue Apr 10, 2007 10:23 am
Forum: VCL
Topic: mulitcolor serie
Replies: 12
Views: 19779

Hi guzial, Following the steps in the article above I've made an example with 6 series and 1000000 points in each one and it takes about 8 seconds to draw the chart in my machine. The code I use is: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,...
by Yeray
Tue Apr 10, 2007 9:08 am
Forum: VCL
Topic: mulitcolor serie
Replies: 12
Views: 19779

Hi guzial,

you can take a look at this article to optimize your LineSeries.
by Yeray
Tue Apr 10, 2007 9:01 am
Forum: VCL
Topic: Tcursortool method FollowMouse doesn't work
Replies: 4
Views: 9397

And also note that we've added it to our wish list to be considered for further releases.
by Yeray
Tue Apr 10, 2007 8:34 am
Forum: VCL
Topic: Tcursortool method FollowMouse doesn't work
Replies: 4
Views: 9397

Hi guzial,

you can solve this issue assigning a series to the cursor tool.
by Yeray
Tue Apr 10, 2007 8:08 am
Forum: VCL
Topic: mulitcolor serie
Replies: 12
Views: 19779

Hi guzial,

We're sorry but you should use TLineSeries to achieve ColorEachPoint to work properly.
by Yeray
Thu Apr 05, 2007 11:18 am
Forum: VCL
Topic: mulitcolor serie
Replies: 12
Views: 19779

Hello guzial, Ensure that you have set the following properties to true: YourLineSeries.ColorEachLine:=true; YourLineSeries.ColorEachPoint:=true; If this doesn't help, could you please send us a simple example project we can run "as-is" to reproduce the problem here? You can post your files at news:...
by Yeray
Wed Mar 28, 2007 8:59 am
Forum: VCL
Topic: Get BottomAxis Value
Replies: 1
Views: 5700

Hello Kev, the following example shows you two ways to achieve it: procedure TForm1.ChartTool1DragLine(Sender: TColorLineTool); var x, y, index: Integer; begin x:=Series1.CalcXPosValue(ChartTool1.Value); //first way for y:=Chart1.Axes.Left.IStartPos to Chart1.Axes.Left.IEndPos do if Series1.Clicked(...