Search found 139 matches

by Dave
Thu Jun 04, 2009 11:02 am
Forum: .NET
Topic: How Do I set values in the Legend?
Replies: 2
Views: 4656

Thanks Yeray. Ive sorted the problem. Not sure what was happenning but its working OK now.
by Dave
Wed Jun 03, 2009 9:26 am
Forum: .NET
Topic: How Do I set values in the Legend?
Replies: 2
Views: 4656

How Do I set values in the Legend?

Hi Support Ive set up a simple application. (Im using Visual C# and Visual Studio). Ive added a TeeChart control and a button to a windows form. When the user presses the button the following code is run. Steema.TeeChart.Styles.Line Line1; Line1 = new Steema.TeeChart.Styles.Line(); tChart1.Series.Ad...
by Dave
Wed Apr 29, 2009 10:31 am
Forum: .NET
Topic: Can I Set the Title on Export Dialog?
Replies: 4
Views: 7621

Thanks Sandra your first solution works perfectly.
by Dave
Wed Apr 29, 2009 8:31 am
Forum: .NET
Topic: Can I Set the Title on Export Dialog?
Replies: 4
Views: 7621

Actually the above displays the Editor dialog. Im not sure how I display the Export Dialog in a way that lets me change the title.
by Dave
Wed Apr 29, 2009 8:22 am
Forum: .NET
Topic: Can I Set the Title on Export Dialog?
Replies: 4
Views: 7621

Sorry guys please ignore that question. I worked it out myself after a few seconds thought. ie.

Steema.TeeChart.Editor editor1 = new Steema.TeeChart.Editor(theController.Chart);
editor1.Title = "My Chart";
editor1.ShowModal();
by Dave
Wed Apr 29, 2009 7:59 am
Forum: .NET
Topic: Can I Set the Title on Export Dialog?
Replies: 4
Views: 7621

Can I Set the Title on Export Dialog?

Hello Support

Im using the ShowExportDialog() function to let the user save a chart.
However Id like to have the chart name shown in the Title bar of the TeeChart Export Dialog box. Can I do this?

cheers
by Dave
Thu Apr 16, 2009 3:50 pm
Forum: .NET
Topic: Is it possible to disable the HELP button on chart editor?
Replies: 5
Views: 7132

Narcis

A quick question. I display the editor the following way;

theChart.ShowEditor();


I dont actually add the editor control to the form. So is it still possible for me to set the HelpFileName property doing it this way?
by Dave
Thu Apr 16, 2009 2:12 pm
Forum: .NET
Topic: Is it possible to disable the HELP button on chart editor?
Replies: 5
Views: 7132

<i>However, you can set the custom help file you want to use using Editor's HelpFileName property.</i>

OK great I'll do that.
by Dave
Thu Apr 16, 2009 12:24 pm
Forum: .NET
Topic: Is it possible to disable the HELP button on chart editor?
Replies: 5
Views: 7132

Is it possible to disable the HELP button on chart editor?

Hi support

The Help button on the chart editor window brings up a lot of technical information thats really only of use to developers. The end-user wont be interested in this so ideally Id like to disable this option. Can this be done?

Thanks.
by Dave
Thu Apr 16, 2009 12:18 pm
Forum: .NET
Topic: Problem with Cursor Tool?
Replies: 2
Views: 4290

Narcis
Thanks. I'll have another shot and if I cant fix I'll send you some code. I suspect it may have something to do with the TeeChart being included within a control.
by Dave
Wed Apr 15, 2009 10:59 am
Forum: .NET
Topic: Problem with Cursor Tool?
Replies: 2
Views: 4290

Problem with Cursor Tool?

This is a general question regarding the cursor tool. Ive a cursor tool attached to chart. When the chart is made invisible then made visible again the cursor tool has disappeared. Even when I do cursor1.Active = true it does not reappear. Actually to be totally accurate Ive created a control that c...
by Dave
Wed Apr 01, 2009 9:28 am
Forum: .NET
Topic: Possible to change scale labels without event handlers?
Replies: 3
Views: 4901

Narcis Thanks. I checked out Tutorial 4 and a code snippet of what I want is shown below. But Im not sure how to implement the bit in the while loop. int total = tChart.Axes.Bottom.Labels.Items.Count; int Factor = 1000; int tem = 0; while (tem < total) { tChart1.Axes.Bottom.Labels.Items[count] = tCh...
by Dave
Tue Mar 31, 2009 12:48 pm
Forum: .NET
Topic: Possible to change scale labels without event handlers?
Replies: 3
Views: 4901

Possible to change scale labels without event handlers?

Hi Using event handlers (eg GetAxisDrawLabel) works nearly all the time. But Ive one window where it causes an exception. I think its due to my application being multi-threaded. So is there another way to redraw the scale labels without using event handlers? i just want to loop through all the displ...
by Dave
Mon Mar 30, 2009 10:03 am
Forum: .NET
Topic: How Do I get X,Y,Z point of Contour Point?
Replies: 11
Views: 14028

Thanks Narcis. Fixed it. Yeray The code at the top works perfectly OK in a demo app I set up. It works for both the new and older versions of the TeeChart.dll It must be something Ive set up in my own application when I port the code over thats causing it not to work. I should be able to work out wh...
by Dave
Fri Mar 27, 2009 2:23 pm
Forum: .NET
Topic: How Do I get X,Y,Z point of Contour Point?
Replies: 11
Views: 14028

Yeray
Yes this DLL is referenced OK.

Since Ive downloaded the updated version of TeeChart PRO. Im getting the following error in licences.licx

Error 17 Unable to resolve type 'Steema.TeeChart.TChart, TeeChart,

Do I need a new public key token?