Search found 9527 matches

by Yeray
Mon Jun 01, 2009 7:52 am
Forum: VCL
Topic: Formatting of bar values
Replies: 13
Views: 7230

Hi Cogito, You have two options in order to assign events: - You can create them at design time: To create an event at design time, you need the object that fires the event to be created also at design time. For example, to use SeriesGetMarkText, that is an event from the series, you need the chart ...
by Yeray
Fri May 29, 2009 2:13 pm
Forum: .NET
Topic: WPF Teechart - CursorTool FastCursor property
Replies: 3
Views: 5533

Hi Damien, I can't tell you that for sure. This probably will depend on the cost of porting the fixes from v2009 (v4) to v3. This depends on every specific issue. Technical support for v3 won't be discontinued. However at some stage we will cease to publish updates. We can commit to fix reasonable i...
by Yeray
Fri May 29, 2009 1:57 pm
Forum: VCL
Topic: Formatting of bar values
Replies: 13
Views: 7230

Hi Here you have an example using these events: //... private { Private declarations } procedure Chart1GetAxisLabel(Sender: TChartAxis; Series: TChartSeries; ValueIndex: Integer; var LabelText: String); procedure SeriesGetMarkText(Sender: TChartSeries; ValueIndex: Integer; var MarkText: String); //....
by Yeray
Fri May 29, 2009 11:48 am
Forum: VCL
Topic: circular gauge issues/questions with 8.02
Replies: 4
Views: 10442

Hi Janusz_Cichocki, Yes, this series type should prevent axis labels overlapping when the angle is 360 or next to 360. I've added this to the wish list to be implemented in future releases (TV52014201) but in the meanwhile you could use GetAxisLabel event to hide the label 360: procedure TForm1.Char...
by Yeray
Fri May 29, 2009 8:53 am
Forum: VCL
Topic: Formatting of bar values
Replies: 13
Views: 7230

Hi Cogito,

If you want the same character in all your charts:

Code: Select all

DecimalSeparator := '.';
If you have more than one chart, or you want to set different decimal separators in the same chart, yes, you should use OnGetAxisLabels or OnGetMarkText events to change each mark, label text.
by Yeray
Fri May 29, 2009 8:49 am
Forum: VCL
Topic: Problems after Delphi 2009 update 3
Replies: 3
Views: 7744

Hi Lenfors,

We appreciate your feedback and your suggestions and we'll take it in consideration for the future.
by Yeray
Fri May 29, 2009 8:44 am
Forum: VCL
Topic: problem with SaveToChartFile and LoadFromChartFile
Replies: 3
Views: 2716

Hi Cogito, Could you please try this example? At design time: - Drop a Chart (Chart1) on the top-left corner of your form. - Drop a Panel on the right side. - Drop a Chart (Chart2) inside this new Panel, on the top-left corner of this panel. - Drop a button on your form. Here is this example code: u...
by Yeray
Thu May 28, 2009 2:32 pm
Forum: .NET
Topic: Mouse Cursor on chart does not change to Arrow 3.5.3274.3066
Replies: 8
Views: 13063

Hi Srinivas,

Yes, as I said above, I could reproduce this "linepen issue" with v3 but not with v4.
As a workaround you could set outlinepen width to 3 at Form1_Load method.
by Yeray
Thu May 28, 2009 2:25 pm
Forum: VCL
Topic: method Clear() on Series does not work
Replies: 1
Views: 1567

Hi Bernard, I've tested with the following code and everything seems to work as expected. Could you please try it? procedure TForm1.FormCreate(Sender: TObject); var i: Integer; series1: TBar3DSeries; begin series1 := TBar3DSeries.Create(self); Chart1.AddSeries(series1); for i:=1 to 50 do Series1.Add...
by Yeray
Thu May 28, 2009 2:13 pm
Forum: VCL
Topic: Problem on adding XYZ poins in 3D surface wireframe chart
Replies: 1
Views: 1909

Hi psau, First, the problem is that you are trying to draw an irregular surface and that's why only a few points are drawn. To see a "better" result you could do this: Series1.IrregularGrid := true; But these series aren't thought to draw things like that so the result isn't the expected. On the oth...
by Yeray
Thu May 28, 2009 1:52 pm
Forum: VCL
Topic: problem with SaveToChartFile and LoadFromChartFile
Replies: 3
Views: 2716

Hi Cogito, Have you called the function with the correct IncludeData parameter? Here it is the function definition: procedure SaveChartToFile(AChart: TCustomChart; Const AFileName: String; IncludeData, TextFormat: Boolean); Unit TeeStore Description This method will save the current chart as a TeeCh...
by Yeray
Thu May 28, 2009 1:47 pm
Forum: VCL
Topic: TPolar DrawZone
Replies: 3
Views: 4628

Hi Calou, The principal problem is that with PolarGrid series you cannot define the length of each point so that it is uniform. Then tha only think you could do is simulate the effect filling more squares for high values. Here is a simple example, only to show that this wouldn't be easy to achieve: ...
by Yeray
Thu May 28, 2009 11:11 am
Forum: VCL
Topic: TPolar DrawZone
Replies: 3
Views: 4628

Hi Calou,

I'm afraid that this would be difficult to draw with the actual TeeCahrt series set. This is already in the wish list (TV52012610) and we'll try to implement it in further releases as several customers demanded for it.
by Yeray
Thu May 28, 2009 10:53 am
Forum: ActiveX
Topic: Point series "Small Dot "
Replies: 3
Views: 5158

Hi essar,

Please, see my reply here
by Yeray
Thu May 28, 2009 10:47 am
Forum: ActiveX
Topic: Increase pixel Size
Replies: 1
Views: 3472

Hi essar,

If your point series is the first one in your chart, you should do the following to achieve that in VB6:

Code: Select all

  TChart1.Series(0).asPoint.Pointer.Style = psCircle
  TChart1.Series(0).asPoint.Pointer.HorizontalSize = 5
  TChart1.Series(0).asPoint.Pointer.VerticalSize = 5
And welcome!