Search found 9527 matches

by Yeray
Thu Feb 19, 2009 10:39 am
Forum: ActiveX
Topic: colorlinetool cursor does not change back
Replies: 4
Views: 6796

Hi hantom,

I'm glad to announce that this issue has been fixed and will be available with the next maintenance release.
by Yeray
Thu Feb 19, 2009 10:32 am
Forum: VCL
Topic: multiple legend
Replies: 15
Views: 20046

Hi stsl, Yes, I've seen the problem. It seems that, having multiple series, only the last one is clickable. I''ve added the issue to the wish list to be fixed in further releases (TV52013878). In the meanwhile, here you have a workaround example that works for me here: const CheckBoxesSeparation = 1...
by Yeray
Wed Feb 18, 2009 3:26 pm
Forum: .NET
Topic: Arrow head to polar series
Replies: 3
Views: 6774

Hi asupriya, Here I'm afraid we cannot give you a "perfect" solution. We can suggest you several options but you should choose which is the best for you considering the relation between cost/quality: 1) Set the pointer style as triangle. Some points will look better than the others depending on the ...
by Yeray
Wed Feb 18, 2009 2:56 pm
Forum: ActiveX
Topic: Export chart to image is not clear
Replies: 3
Views: 6792

Hi Wissam, Forcing the size to be 600x400 the result image is this and has 96ppp of resolution: http://www.teechart.net/files/public/support/600x400.jpg And leaving the default size (760x415) this is the result again with 96 ppp: http://www.teechart.net/files/public/support/default_resolution.jpg We...
by Yeray
Wed Feb 18, 2009 2:19 pm
Forum: ActiveX
Topic: How to offsetting the x-axis label in be in the center
Replies: 1
Views: 3680

Hi Oblicore, Could you please try this code and see if it works at your end? Private Sub Form_Load() TeeCommander1.ChartLink = TChart1.ChartLink TChart1.AddSeries scPoint TChart1.Series(0).FillSampleValues 10 TChart1.Aspect.View3D = False TChart1.Environment.InternalRepaint End Sub Private Sub TChar...
by Yeray
Wed Feb 18, 2009 11:21 am
Forum: ActiveX
Topic: Statistic Tool Null Values
Replies: 3
Views: 7151

Hi Paolo,

I'm glad to announce that this request is already implemented and will be available with the next maintenance release.
by Yeray
Wed Feb 18, 2009 11:16 am
Forum: VCL
Topic: multiple legend
Replies: 15
Views: 20046

Hi stsl, Yes, you could have two legends using a custom legend. Please take a look at the demo at All features/Miscellaneous/Legend/Multiple Legends . If you prefer to draw a line, you should draw it directly to the canvas: procedure TForm1.Chart1AfterDraw(Sender: TObject); begin With Chart1.Legend....
by Yeray
Wed Feb 18, 2009 11:05 am
Forum: VCL
Topic: Specific Spline X value required at Y Maximum
Replies: 9
Views: 10450

Hi Steve, Here is how you could search for your function maximum: procedure TForm1.Button1Click(Sender: TObject); var maxY: double; maxYIndex, i: integer; begin maxY := Series2.MaxYValue; for i:=0 to Series2.Count-1 do begin if (Series2.YValue[i] = maxY) then begin maxYIndex := i; break; end; end; c...
by Yeray
Wed Feb 18, 2009 9:29 am
Forum: ActiveX
Topic: Statistic Tool Null Values
Replies: 3
Views: 7151

Hi Paolo,

We will try to include it to the next maintenance release. It isn't included yet but it's a high priority wish.

We 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.

Issue info:
forum topic
TV52013276
by Yeray
Wed Feb 18, 2009 8:59 am
Forum: .NET
Topic: Trying to read the number of selected items in ChartListBox
Replies: 6
Views: 9865

Hi Dave,

You could count the active series as follows:

Code: Select all

int total = 0;

for (int i = 0; i < chartListBox1.Items.Count; i++)
{
   if (chartListBox1.Series(i).Active)
   total += 1;
} 
by Yeray
Tue Feb 17, 2009 4:47 pm
Forum: .NET
Topic: Trying to read the number of selected items in ChartListBox
Replies: 6
Views: 9865

Hi Dave,

We aren't sure to understand what are you exactly trying to do here.
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.
by Yeray
Tue Feb 17, 2009 4:44 pm
Forum: .NET
Topic: Legend series outline
Replies: 1
Views: 3750

Hi Chris, Yes, you should use legend's event OnSymbolDraw. The problem is that this event was implemented thinking in one series with different symbols for each point, not for multiple series. That's why we propose you this workaround example. In the meanwhile, I've added this to the wish list to be...
by Yeray
Tue Feb 17, 2009 3:29 pm
Forum: ActiveX
Topic: axes offset and others
Replies: 9
Views: 12703

Hi Ashutosh,

We splitted the last message you posted into a new thread because it was not about the same subject discussed here. The new thread is here:

http://www.teechart.net/support/viewtopic.php?t=9242
by Yeray
Tue Feb 17, 2009 3:27 pm
Forum: ActiveX
Topic: canvas.textout space
Replies: 1
Views: 4663

Hi Ashutosh, I'm not sure to understand you. I've tried the following code and it works fine for me here. Private Sub TChart1_OnAfterDraw() TChart1.Canvas.TextOut 50, 50, Format$(Now, "mm/dd/yyyy hh:mm:ss AM/PM") End Sub What multiline do you think that causes the problem? Please, could you send us ...
by Yeray
Tue Feb 17, 2009 12:45 pm
Forum: VCL
Topic: TChartSeries SortByLabels() - upper case before lower case?
Replies: 18
Views: 22966

Hi marder,

Well, while the enhancement isn't implemented, you always can:

1. Do a copy of the original filenames in a array of strings.

2. Change the labels to downcase as suggested before to achieve your desired order.

3. Show the text from your array using OnGetMarkText.