Search found 11 matches

by Jilonger.Xusen
Thu Nov 18, 2004 1:47 am
Forum: VCL
Topic: Problems aligning two charts in TeeChart 5 / BCB
Replies: 2
Views: 6786

try to do it

Chart1.LeftAxis.LabelsSize:=30; Chart2.LeftAxis.LabelsSize:=30; VolumeSeries1.CustomBarWidth:=CandleSeries1.CandleWidth; ///////////////////// addtion : compile and run http://www.teechart.net/support/modules.php?name=Forums&file=viewtopic&t=1544&sid=b1e591ef504824a501957fac0509b947 it is samed as t...
by Jilonger.Xusen
Tue Nov 16, 2004 5:30 am
Forum: VCL
Topic: how the cursors can be displayed in same vertical line
Replies: 1
Views: 5394

how the cursors can be displayed in same vertical line

how the cursors can be displayed in same vertical line when mouse move? {please compile and run following code in dephi7 teechart7} unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, TeEngine, TeeTools, StdCtrls, Buttons, Series, OHLChart, ...
by Jilonger.Xusen
Mon Aug 09, 2004 3:11 am
Forum: VCL
Topic: Using the TeeGalleryPanel
Replies: 10
Views: 19227

with ChartGalleryPanel1 do
begin
NumCols := 3;
NumRows := 2;
CreateChartList([TFastLineSeries, TFastLineSeries, TCandleSeries,
TCandleSeries, TCandleSeries, TCandleSeries]);
end;
by Jilonger.Xusen
Thu Jul 01, 2004 3:18 am
Forum: VCL
Topic: what happen in Cursor Event?
Replies: 2
Views: 6911

yee,I understand
thanks
by Jilonger.Xusen
Tue Jun 08, 2004 7:54 am
Forum: VCL
Topic: what happen in Cursor Event?
Replies: 2
Views: 6911

what happen in Cursor Event?

procedure TFrmChartBase.Cursor2Change(Sender: TCursorTool; x, y: Integer; const XValue, YValue: Double; Series: TChartSeries; ValueIndex: Integer); begin if (Series1.Count > 0) and (Series1.XValues.MinValue <= XValue) then Annotation1.Text := FormatFloat('#', Series1.YValues[Trunc(XValue)]); end; E...
by Jilonger.Xusen
Fri May 14, 2004 1:03 am
Forum: VCL
Topic: How drag an Annotation with mouse in Chart?
Replies: 2
Views: 7829

hi,Pep
Thanks a lot,very well
by Jilonger.Xusen
Thu May 13, 2004 10:11 am
Forum: VCL
Topic: How drag an Annotation with mouse in Chart?
Replies: 2
Views: 7829

How drag an Annotation with mouse in Chart?

How drag an Annotation with mouse in Chart?
Annotation can be Clicked but I want our users can dray an Annotation with mouse, I can how to do? Or there is a way can display info and can drag info with mouse in chart.
Please advise.

Thanks first.
by Jilonger.Xusen
Tue Apr 06, 2004 9:15 am
Forum: VCL
Topic: How to draw complexer line(Bezier curves, arcs, ...) ?
Replies: 4
Views: 12633

thanks.

Yes, It can work.
I try to do it.
by Jilonger.Xusen
Fri Apr 02, 2004 8:24 am
Forum: VCL
Topic: How to draw complexer line(Bezier curves, arcs, ...) ?
Replies: 4
Views: 12633

procedure TDrawLineTool.DrawLine(const StartPos, EndPos: TPoint; AStyle: TDrawLineStyle); var i:integer; begin with ParentChart.Canvas do if ParentChart.View3D then begin case AStyle of dlLine: begin MoveTo3D(StartPos.X, StartPos.Y, 0); LineTo3D(EndPos.X, EndPos.Y, 0); end; dlHorizParallel: begin H...
by Jilonger.Xusen
Fri Apr 02, 2004 12:59 am
Forum: VCL
Topic: How to draw complexer line(Bezier curves, arcs, ...) ?
Replies: 4
Views: 12633

How to draw complexer line(Bezier curves, arcs, ...) ?

Hi Marjan Slatinek: I know TDrawLineTool can draw single line, but I don't know how to draw complexer line(Bezier curves, arcs, ...) ,and I wish end-user can select and drag complex curves as if TDrawLineTool control single line. TDrawLineTool: 0: Lines.Last.Style:=dlLine; 1: Lines.Last.Style:=dlHor...