Search found 11 matches
- Thu Nov 18, 2004 1:47 am
- Forum: VCL
- Topic: Problems aligning two charts in TeeChart 5 / BCB
- Replies: 2
- Views: 6867
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...
- Thu Nov 18, 2004 1:19 am
- Forum: VCL
- Topic: Where are you, Pep or Marjan? Please help me.
- Replies: 1
- Views: 4990
- Tue Nov 16, 2004 5:30 am
- Forum: VCL
- Topic: how the cursors can be displayed in same vertical line
- Replies: 1
- Views: 5442
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, ...
- Mon Aug 09, 2004 3:11 am
- Forum: VCL
- Topic: Using the TeeGalleryPanel
- Replies: 10
- Views: 19684
- Thu Jul 01, 2004 3:18 am
- Forum: VCL
- Topic: what happen in Cursor Event?
- Replies: 2
- Views: 6971
- Tue Jun 08, 2004 7:54 am
- Forum: VCL
- Topic: what happen in Cursor Event?
- Replies: 2
- Views: 6971
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...
- Fri May 14, 2004 1:03 am
- Forum: VCL
- Topic: How drag an Annotation with mouse in Chart?
- Replies: 2
- Views: 7896
- Thu May 13, 2004 10:11 am
- Forum: VCL
- Topic: How drag an Annotation with mouse in Chart?
- Replies: 2
- Views: 7896
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.
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.
- Tue Apr 06, 2004 9:15 am
- Forum: VCL
- Topic: How to draw complexer line(Bezier curves, arcs, ...) ?
- Replies: 4
- Views: 12746
- Fri Apr 02, 2004 8:24 am
- Forum: VCL
- Topic: How to draw complexer line(Bezier curves, arcs, ...) ?
- Replies: 4
- Views: 12746
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...
- Fri Apr 02, 2004 12:59 am
- Forum: VCL
- Topic: How to draw complexer line(Bezier curves, arcs, ...) ?
- Replies: 4
- Views: 12746
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...