Search found 9533 matches

by Yeray
Tue Apr 28, 2009 2:11 pm
Forum: VCL
Topic: Unit Conversion in teechart?
Replies: 12
Views: 8900

Hi FHG_AST, Here is how you could do it but note that with this way, the texts won't show integers but the corresponding values of the original integers. In the example I created a Point series and generated the events at designtime: procedure TForm1.FormCreate(Sender: TObject); begin Series1.FillSa...
by Yeray
Tue Apr 28, 2009 1:16 pm
Forum: VCL
Topic: Multi scale chart
Replies: 3
Views: 4608

Hi Calou,

I think that you could do something similar than the example at All features/Axes/Multiple at Runtime. Could you take a look at it and tell us if that was what you were thinking on?
by Yeray
Tue Apr 28, 2009 12:11 pm
Forum: VCL
Topic: TTowerSeries + runtime chart editor
Replies: 4
Views: 7603

Hi Franck,

As an update, this has been solved for the next maintenance release.
by Yeray
Tue Apr 28, 2009 12:11 pm
Forum: VCL
Topic: Missing Functions in TChartEditForm
Replies: 3
Views: 6222

Hi RGSMike,

As an update, this has been solved for the next maintenance release.
by Yeray
Tue Apr 28, 2009 11:57 am
Forum: VCL
Topic: Unit Conversion in teechart?
Replies: 12
Views: 8900

Hi FHG_AST, I can think in some different possibilities: 1. The best solution would be if you could use a database that wouldn't need any conversion. I mean, it would be better if you could convert your values to a new database and use this new database as your series' source. 2. You could use a ser...
by Yeray
Tue Apr 28, 2009 10:59 am
Forum: ActiveX
Topic: OpenGL buggy with Owner Draw tabs
Replies: 14
Views: 20365

Hi Elena,

I'm afraid that this haven't been solved yet with TeeChart AX 8.0.0.5.
by Yeray
Tue Apr 28, 2009 10:09 am
Forum: VCL
Topic: Define legend color for a series?
Replies: 3
Views: 3119

Hi Windwalker,

I think you should do something similar to the example at All features/Miscellaneous/Legend/Symbol OnDraw in the new features demo available at TeeChart's program group.

I hope this helps
by Yeray
Tue Apr 28, 2009 9:06 am
Forum: VCL
Topic: Bar Width for Stacked Bars
Replies: 6
Views: 6553

Hi Ryder, The only workaround I can think right now is to add another series with a null value and adjust the axis: uses series; procedure TForm1.FormCreate(Sender: TObject); var i: Integer; begin for i:=0 to 1 do begin Chart1.AddSeries(TBarSeries.Create(self)); Chart1[i].FillSampleValues(5); end; (...
by Yeray
Mon Apr 27, 2009 3:08 pm
Forum: .NET
Topic: Draw zoom rectangle on CompactFramework
Replies: 3
Views: 6080

Hi marvin966,

I recommend you to be aware at this forum or subscribe to Steema's RSS news feed for new release announcements and which bugs are fixed on them.

Thanks in advance.
by Yeray
Mon Apr 27, 2009 3:05 pm
Forum: VCL
Topic: save scaled chart as bitmap
Replies: 5
Views: 4398

Hi Roland, I'm not sure to understand what are you exactly trying to do. You are setting iWidth, iRight, iBottom and iHeight and you are resetting them before using. And with this code, I get an image with different size and different chart size than what you say. Here is how I would do to obtain th...
by Yeray
Mon Apr 27, 2009 11:24 am
Forum: ActiveX
Topic: Next release
Replies: 3
Views: 6679

Hi Paolo ,

Not yet. Please, be aware at the first post in the ActiveX forum. When the next release will be available, it will be announced like it was the 8.0.0.5.
by Yeray
Mon Apr 27, 2009 10:35 am
Forum: VCL
Topic: Bar Width for Stacked Bars
Replies: 6
Views: 6553

Hi Ryder, Yes, it seems that having for example two Bar Series, and one of them with BarWidthPercent = 100 and not the other, the last bar of the first series isn't draw as BarWidthPercent = 100. I've added it to the wish list to be fixed in future releases (TV52014110). Easy to reproduce with this:...
by Yeray
Mon Apr 27, 2009 9:28 am
Forum: .NET
Topic: Chart Editor questions
Replies: 4
Views: 5292

Hi Jay, Of course you are free to use the build you wish, but note that we recommend using the latest available because sometimes trying to fix a bug, another related in automatically fixed and that wouldn't be reflected in the release notes. So, often, either customers and developers have nice surp...
by Yeray
Mon Apr 27, 2009 9:11 am
Forum: .NET
Topic: Very Tricky Resize Bug in v3 - First Bar Disappears.
Replies: 8
Views: 9611

Hi qcrnd,
qcrnd wrote:1. Can you please make sure that you can reproduce this with the 3371.26405
Reproduced.
qcrnd wrote:2. Can you please make sure that your maintenance version FIXES this problem
Confirmed. It's fixed in the actual sources, so will be fixed in the next maintenance release.
by Yeray
Mon Apr 27, 2009 8:50 am
Forum: VCL
Topic: interupted line chart
Replies: 2
Views: 2667

Hi Tom,

Have you seen how are treated the "null values"? Please, take a look at the example at What's New ?/Welcome/New in Series/Horiz.Line/Line/TreatNulls in the new features demo, available at TeeChart's program group.

I hope that helps