Search found 9545 matches

by Yeray
Fri Aug 08, 2008 7:49 am
Forum: VCL
Topic: Bug if both Renko series and Point series on same chart
Replies: 1
Views: 3107

Hi blackthorne, I've tried the following and only could see axis changes when the button is pressed. Could you please tell us if you see any important step I'm missing to reproduce the problem? And could you tell us what TeeChart version are you using? procedure TForm1.FormCreate(Sender: TObject); b...
by Yeray
Fri Aug 08, 2008 7:27 am
Forum: VCL
Topic: Teechartpro 7.12 Drawing a graph
Replies: 25
Views: 39762

Hi Didier,

I'm happy to see that!
by Yeray
Thu Aug 07, 2008 8:22 am
Forum: VCL
Topic: TChartPageNavigator buttons
Replies: 5
Views: 9965

Hi rhyden,

I couldn't reproduce it here. What TeeChart version are you using? Could you verify that the version you are using is the latest available at the download area?
by Yeray
Thu Aug 07, 2008 8:14 am
Forum: VCL
Topic: What happened to MinVisibleValue & MaxVisibleValue
Replies: 3
Views: 8195

Hi Phineas, Some considerations: 1) I've fixed the function I told you yesterday modifying one line of code. Where said: if (Series[i].YValue[j] < FAxis.Maximum) and (Series[i].YValue[j] > FAxis.Minimum) then Now it's: if (Series[i].YValue[j] <= FAxis.Maximum) and (Series[i].YValue[j] >= FAxis.Minim...
by Yeray
Thu Aug 07, 2008 7:29 am
Forum: VCL
Topic: Teechartpro 7.12 Drawing a graph
Replies: 25
Views: 39762

Hi Didier, That's strange. You should see a series and a teefunction. Another test you can do could be to add a chart (and a function) to a new form at design time and see the declarations in the code generated. For me: //... type TForm1 = class(TForm) Chart1: TChart; Series1: TLineSeries; TeeFuncti...
by Yeray
Wed Aug 06, 2008 9:06 am
Forum: VCL
Topic: Probably Stupid Question - Calculate Y from X
Replies: 1
Views: 3147

Hi Simon,

Could you take a look at the example that Narcis posted here? I think this will solve your both questions at the same time cause it calculates interpolated points and it should work for DateTime also.
by Yeray
Wed Aug 06, 2008 8:37 am
Forum: VCL
Topic: What happened to MinVisibleValue & MaxVisibleValue
Replies: 3
Views: 8195

Hi Phineas, The methods you mention are exclusive ActiveX methods. Here is how you could calculate the same in Delphi. And please, let us know if we've mistakenly documented the methods you mention as belonging to the VCL version, and if so, where we can find the error to correct it. function TForm1...
by Yeray
Tue Aug 05, 2008 8:21 am
Forum: VCL
Topic: Teechartpro 7.12 Drawing a graph
Replies: 25
Views: 39762

Hi Didier,

It's an event for TCustomTeeFunction. You should find it through Object inspector as usually if you added the function at design time (at the function object, not the series).
by Yeray
Tue Aug 05, 2008 8:15 am
Forum: VCL
Topic: copy chart to excel
Replies: 3
Views: 5345

Hi mc, Could you take a look at this example and see if it's useful at your end? procedure TForm1.Button1Click(Sender: TObject); Function GetChartJPEG(AChart:TCustomChart):TJPEGImage; var tmpBitmap:TBitmap; tmpChart: TChart; i:integer; begin result:=TJPEGImage.Create; { <-- create a TJPEGImage } tmp...
by Yeray
Mon Aug 04, 2008 7:41 am
Forum: VCL
Topic: Teechartpro 7.12 Drawing a graph
Replies: 25
Views: 39762

Hi Clara,

This works for me here.

Code: Select all

procedure TForm1.TeeFunction1Calculate(Sender: TCustomTeeFunction;
  const x: Double; var y: Double);
begin
  //y := 2+3*(1+x)-5 + (abs(power(-x,2)) - x*x) * 2 - 1/(x + 1);
 y := sin(x) + cos(x) - abs(tan(x)) + x;
end;
by Yeray
Thu Jul 31, 2008 8:28 am
Forum: VCL
Topic: 2 sets of axisarrowtools for the same axis
Replies: 13
Views: 21100

Hi Colin, The code I posted yesterday was for using a trackbar outside of the editor. Here you have a code I suggest you using a scrollbar with a 2D chart. procedure TForm1.ScrollBar1Change(Sender: TObject); var XIncrement, YIncrement: Double; begin with Series1 do begin XIncrement := ((MaxXValue - ...
by Yeray
Wed Jul 30, 2008 10:18 am
Forum: VCL
Topic: 2 sets of axisarrowtools for the same axis
Replies: 13
Views: 21100

Hi Colin, I think I don't understand your request. I mean the Zoom slider, or trackbar, at ChartEditor -> Chart -> 3D . To do the same as this trackbar does, you could simply do: procedure TForm1.FormCreate(Sender: TObject); begin TrackBar1.Min := 0; TrackBar1.Max := 500; TrackBar1.Position := Chart...
by Yeray
Wed Jul 30, 2008 7:46 am
Forum: VCL
Topic: Stacked Line Charts
Replies: 4
Views: 9329

Hi Colin,

In that case you may be interested in having a look at the interpolation example from Narcis.
by Yeray
Tue Jul 29, 2008 8:37 am
Forum: VCL
Topic: Using Teechart 8.02 in quickreport5 (Delphi 2007)
Replies: 12
Views: 10831

Hi yam49,

I've sent a link to download the v8.03 Release Candidate to your email account. As you are source code customer, probably the easiest way to install everything may be using TeeRecompile.
by Yeray
Tue Jul 29, 2008 8:11 am
Forum: VCL
Topic: Stacked Line Charts
Replies: 4
Views: 9329

Hi Colin, I'm afraid it won't work as you expect. Both Line and Area series calculate the stacked result following the series' indexes. So, the first, result point will be the result of the addition of the firsts values if stacked series. And if they don't coincide in x, it won't look as expected. I...