Search found 9507 matches

by Yeray
Mon Feb 09, 2009 3:59 pm
Forum: .NET
Topic: Cursor Tool Query
Replies: 13
Views: 19519

Hi Sanyog, 1.When we move the cursor tool outside the TChart boundary at one point it comes back to the middle of the Plot.Till certain extent it is not seen but after that it comes back to the middle of the Plot. I haven't been able to reproduce it. In your project you are using two properties (Str...
by Yeray
Mon Feb 09, 2009 12:36 pm
Forum: VCL
Topic: THorizBarSeries - scroll bar bug
Replies: 9
Views: 11560

Hi marder, Yes, as you see your problem is the chart property MaxPointsPerPage. This property is used for the chart's paging feature but you are not using it. You are using a scrollbar so you need a variable or a constant to control the number of points to show. Here there is your code with a few mo...
by Yeray
Mon Feb 09, 2009 12:07 pm
Forum: .NET
Topic: Cursor Tool Query
Replies: 13
Views: 19519

Hi Sanyog, We'll be glad to try to help you with your problematic code when you'll send it. Regarding the number of times the event is fired, I've tested it and seems to be executed once for each cursor position change. If you have too code in this event and you want it to be executed, for example e...
by Yeray
Mon Feb 09, 2009 11:42 am
Forum: ActiveX
Topic: Legend with multiple series does not show checkboxes
Replies: 4
Views: 6266

Hi landa, First of all I'd like to apologize because we're not familiarized with tcl language, so it would be really helpful if you could reproduce the problems in a simple vb example. On the other hand, we've seen that the portion of code where the panel gradient is set to blue seems to be commente...
by Yeray
Mon Feb 09, 2009 9:36 am
Forum: Java
Topic: Distance between axis title and axis labels
Replies: 11
Views: 21222

Hi Jessie,

Ok, I've sent to your registered mail account the fix of this issue.
by Yeray
Mon Feb 09, 2009 8:55 am
Forum: .NET
Topic: Dialog box titles for built-in tools
Replies: 1
Views: 3366

Hi Jay,

Yes, most controls have "Title" property:

Code: Select all

editor1.Title = "my applicattion";
saveFileDialog1.Title = "my application";
by Yeray
Mon Feb 09, 2009 8:24 am
Forum: VCL
Topic: TeeChart 5 Installer for BDS 2006
Replies: 1
Views: 2808

Hi Seth,

I'm afraid that BDS 2006 appeared about years 2005~2006, and at this time we went for teechart v7 so that's why the installers for v5 are not made.
by Yeray
Mon Feb 09, 2009 8:18 am
Forum: VCL
Topic: Multiple Axis on L/R
Replies: 2
Views: 5011

Hi pbooth,

Yes, the general idea would be to add one axis for each series, set them to be drawn to the left or to the right and set enough margin in the chart to ensure they will be shown.

Here there is a thread where a customer asked for something similar. I hope it helps.
by Yeray
Fri Feb 06, 2009 4:55 pm
Forum: VCL
Topic: Scrolling one date at a time
Replies: 9
Views: 8963

Hi Dave, The Chart property MaxPointsPerPage is used when one wants to use the Chart pagination feature. On the other hand, you are scrolling your chart with a scrollbar. That's why setting this property your chart is confusing. The following code works now for us here: procedure TfrmChartExample.Fo...
by Yeray
Fri Feb 06, 2009 4:38 pm
Forum: .NET
Topic: Percent-Values of Stacked100 with Series-Hotpot-Tools
Replies: 1
Views: 4330

Hi Michael, What TeeChart version are you using? Here with TeeChart v3.5.3317.17532 for Visual Studio 2008 the following code seems to work fine: private Steema.TeeChart.Tools.SeriesHotspot myHotSpotTool; private Steema.TeeChart.Chart ch1; protected void Page_Load(object sender, EventArgs e) { ch1 =...
by Yeray
Fri Feb 06, 2009 4:03 pm
Forum: VCL
Topic: WarmPie example in Delphi - smooth pie chart
Replies: 8
Views: 17125

Hi marder,

Don't worry! We're pleased to help!
by Yeray
Fri Feb 06, 2009 3:31 pm
Forum: VCL
Topic: THorizBarSeries - scroll bar bug
Replies: 9
Views: 11560

Hi marder,

I've tested it and it seems to work fine for me here. Please, could you send us a simple example project we can run "as-is" to reproduce the problem here?
You can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
by Yeray
Fri Feb 06, 2009 3:15 pm
Forum: VCL
Topic: WarmPie example in Delphi - smooth pie chart
Replies: 8
Views: 17125

Hi marder,

I think that the most probably is that your delphi's search path is still referencing some previous teechart installation packages. Could you please verify the search and the library path?
by Yeray
Fri Feb 06, 2009 11:27 am
Forum: VCL
Topic: How do I do a color coded grid?
Replies: 1
Views: 3296

Hi ChrisD, You could start with something like this: uses TeeSurfa; procedure TForm1.FormCreate(Sender: TObject); var Series1: TColorGridSeries; i, j: integer; begin Series1 := TColorGridSeries.Create(Chart1); Series1.ParentChart := Chart1; Chart1.View3D := false; Series1.StartColor := clRed; Series...
by Yeray
Fri Feb 06, 2009 9:50 am
Forum: VCL
Topic: problem with Transparency, TColorGridSeries, IrregularGrid
Replies: 5
Views: 9259

Hi dave, Well, while the color combination doesn't work as one would like, maybe you could consider applying transparency to both color grids. This looks a little bit better: var xcntr: Integer; ycntr: Integer; newSeries: TColorGridSeries; begin newSeries:=TColorGridSeries.Create(chart1); newSeries....