how to coding both VB.NET and C#.NET

TeeChart for ActiveX, COM and ASP
Post Reply
M.Takeda
Newbie
Newbie
Posts: 18
Joined: Tue Aug 17, 2004 4:00 am

how to coding both VB.NET and C#.NET

Post by M.Takeda » Wed Sep 15, 2004 9:32 am

Please advise me how to coding both VB.NET and C#.NET
1) How to change series cursor by crHelp,crHandPoint .. constant
2) How to get axis.bottom label text(datetime) at specific position
3) How to convert x_value(datetime)--such as 37956.642365972-- to
text ,for example '2004/02/03 07:55'
4) Where can I get this kind of sample code(VB.NET,C#.NET) at your
URL.
Best Regards,
Thanks in advance.

Pep
Site Admin
Site Admin
Posts: 3295
Joined: Fri Nov 14, 2003 5:00 am
Contact:

Post by Pep » Wed Sep 15, 2004 3:45 pm

Hi,

1) You can do : axTChart1.Series(0).Cursor = Cursors.Hand;
2) You can do :
string i = axTChart1.Series(0).XValueToText(3);
MessageBox.Show(i);
3) See the 2
4) You cna find some examples which use TeeChart Pro ActiveX version and VS.NET under :
C:\Program Files\Steema Software\TeeChart Pro v7 ActiveX Control\Examples\Visual Studio .NET

You can convert the C# code to VB.Net code at :
http://www.kamalpatel.net/ConvertCSharp2VB.aspx

Post Reply