Search found 3275 matches

by Pep
Tue Nov 18, 2003 11:20 pm
Forum: .NET
Topic: MaximumOffset and MinimumOffset do not work on custom axes
Replies: 9
Views: 24490

Hi David,

we've received your email with the demo project. We'll review it and let you know something asap.

Josep Lluis Jorge
http://support.steema.com
by Pep
Tue Nov 18, 2003 10:34 am
Forum: ActiveX
Topic: VC++ example "Surface" does not work!
Replies: 13
Views: 35902

Hi,

which example are you referencing ?

Best Regards !
Josep Lluis Jorge
http://support.steema.com
by Pep
Tue Nov 18, 2003 10:21 am
Forum: ActiveX
Topic: Teechart ActiveX v5 StopMouse() ?
Replies: 6
Views: 21959

Hi, have you tried to do this : HRESULT __stdcall CPlotterView::OnClickSeries (long SeriesIndex,long ValueIndex,enum TeeChart::EMouseButton Button,enum TeeChart::EShiftState Shift,long X,long Y ) { m_chart.StopMouse(); if((Button == mbRight) && (Shift==ssNone)) { // Context Menu oeffnen HMENU hmenu ...
by Pep
Tue Nov 18, 2003 9:55 am
Forum: ActiveX
Topic: Adding a Gauge when I already have a Line CHart
Replies: 2
Views: 11772

Hi,

the problem is that you are trying to add a Bar series to the Chart instead of a Gauge series.
You should do :
m_cTeeChartGauge.AddSeries(42);
instead of:
m_cTeeChartGauge.AddSeries(1);

Best Regards
Josep Lluis Jorge
Steema Support Central
by Pep
Fri Nov 14, 2003 2:49 pm
Forum: VCL
Topic: Anti-alias in realtime graph
Replies: 1
Views: 10469

Hi Gusmoko, you can use the Antialias method as in the following example : implementation uses TeCanvas; {$R *.dfm} procedure TForm1.FormCreate(Sender: TObject); begin Series1.FillSampleValues(1000); end; procedure TForm1.CheckBox1Click(Sender: TObject); begin Chart1.Invalidate; end; procedure TForm...