Search found 9507 matches

by Yeray
Tue Apr 08, 2008 8:34 am
Forum: ActiveX
Topic: move tool available outside of TeeCommander1
Replies: 9
Views: 11731

Hi Matt, I'm afraid there's no tool to move the chart. Otherwise, you always can emulate this TeeCommander function by doing something similar than following: Dim MoveChart As Boolean Dim StartX, StartY As Double Private Sub Form_Load() TChart1.AddSeries scPoint TChart1.Series(0).FillSampleValues 25...
by Yeray
Tue Apr 08, 2008 8:05 am
Forum: ActiveX
Topic: Native Export in XML format?
Replies: 10
Views: 10321

Hi Hugh, I'm afraid it's not possible to save chart properties into an xml file. If you want to save them, you'll have to save into a tee file. You can have a look at the detailed explanation in the tutorials: Tutorials/Chapter 12 - Exporting and Importing Charts And at the examples from features de...
by Yeray
Mon Apr 07, 2008 10:13 am
Forum: VCL
Topic: Functions, period range and data leak
Replies: 22
Views: 27103

Hi stsl, I've added the feature request to the wish list (TV52012945) to be reviewed and, if possible, enhanced in further releases. This may be quite a sensible issue as implementing it as you request may break existing clients code. Also notice that we don't provide support for changes to the sour...
by Yeray
Fri Apr 04, 2008 10:15 am
Forum: ActiveX
Topic: aspect.elevation/aspect.rotation ignored until tcRotate used
Replies: 2
Views: 4660

Hi Matt, Could you try the following code? It works fine here in a new project with only a chart and two sliders. Private Sub Form_Load() Slider1.Min = 0 Slider2.Min = 0 Slider1.Max = 360 Slider2.Max = 360 Slider1.Value = TChart1.Aspect.Elevation Slider2.Value = TChart1.Aspect.Rotation TChart1.Aspec...
by Yeray
Fri Apr 04, 2008 9:33 am
Forum: VCL
Topic: Scrolling & ProcessorLoad
Replies: 7
Views: 9422

Hi Davy,

I'm really glad to see that!
by Yeray
Fri Apr 04, 2008 9:19 am
Forum: ActiveX
Topic: NumericGauge Annotations
Replies: 2
Views: 4837

Hi Thomas,

Yes, you can customize these annotation tools. They are called:

.asNumericGauge.TextMarker
.asNumericGauge.UnitsMarker
.asNumericGauge.ValueMarker

and inside them you can do:

.Text
.Shape.Font

you'll see the customizable properties there.
by Yeray
Fri Apr 04, 2008 8:12 am
Forum: VCL
Topic: Teechart 8 Pro and IntraWeb?
Replies: 12
Views: 17067

Hi Claus,

Here is you answer.
by Yeray
Fri Apr 04, 2008 8:11 am
Forum: VCL
Topic: TeeChart 8 and IntraWeb 9
Replies: 4
Views: 7656

Hi Claus, I've prepared, and sent to your registered mail, the sources and the compiled files that work fine here for TeeChart v8, IntraWeb v 9.0 and Delphi 2007. To use the compiled files, I recommend you the following file distribution: Copy the design-time bpl (DCLIW90TeeChartPro8_2007.bpl) to de...
by Yeray
Thu Apr 03, 2008 10:55 am
Forum: ActiveX
Topic: 64 bit version
Replies: 3
Views: 5394

Hi ava, I'm afraid there isn't any 64 bit AX version actually. As you probably know, we produce AX version from the VCL one and, at this moment, Borland doesn't have 64 bit compilers. So, now it's impossible for us to create this version. So, as we don't have a 64 bit AX version, you should activate...
by Yeray
Wed Apr 02, 2008 9:02 am
Forum: VCL
Topic: Scrolling & ProcessorLoad
Replies: 7
Views: 9422

Hi Davy, Here i can suggest you two possibilities depending on the repaint frequency you wish. You could disable autorepaint when right mouse button is pressed and only repaint and draw new values when user holds up the right mouse: procedure TForm1.Chart1MouseDown(Sender: TObject; Button: TMouseBut...
by Yeray
Wed Apr 02, 2008 8:29 am
Forum: ActiveX
Topic: Wrong Self-stacked Bar?
Replies: 5
Views: 10365

Hi Alex,

Now we understood what demo were you looking at and we could see the bug. I've added it to the wish list (TV52012936) to be fixed in further releases.
by Yeray
Tue Apr 01, 2008 8:00 am
Forum: ActiveX
Topic: Wrong Self-stacked Bar?
Replies: 5
Views: 10365

Hi Alex, We've tested both v7.0.1.4 and v7.0.0.6 and we could see no difference between them. Note that we have one series with three points, not three series with one point. And setting MultiBar to mbSelfStack, we force the bar series to draw one point above the other. Also note that in this demo t...
by Yeray
Mon Mar 31, 2008 10:17 am
Forum: VCL
Topic: Google finance graph
Replies: 2
Views: 6657

Hi Bruce, Don't panic! It's possible to do the same with teechart. I've modified the example that Narcis made here and I think that the following code achieves what you suggested: var xval: Double; // global variable function TForm1.InterpolateLineSeries(Series: TChartSeries; FirstIndex, LastIndex: ...
by Yeray
Mon Mar 31, 2008 9:06 am
Forum: VCL
Topic: Is a stacked barchart with z-order possible?
Replies: 5
Views: 7287

Hi Claes, We are not sure of what exactly are you trying to achieve. If you simply want some series stacked and some not stacked, you should set stack groups and multibar as stacked. For example: Series1.FillSampleValues(); Series1.StackGroup := 1; Series2.FillSampleValues(); Series2.StackGroup := 2...
by Yeray
Fri Mar 28, 2008 10:10 am
Forum: VCL
Topic: Relating point clicked and axis
Replies: 7
Views: 9160

Hi dpatch, Yes, this is a known bug (TV52012634) in the wish list to be fixed as soon as possible. And note that this can be reproduced the simple code: procedure TForm1.FormCreate(Sender: TObject); var x,z: Integer; begin for x:=0 to 5 do for z:=0 to 3 do begin Series1.AddXYZ(x,random,z); end; end;