Mark tips tool does not work with 3D tower series

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
MaZ
Newbie
Newbie
Posts: 4
Joined: Wed Nov 29, 2006 12:00 am

Mark tips tool does not work with 3D tower series

Post by MaZ » Fri May 18, 2007 4:20 pm

Hello Steema team,

after reading some previous posts, my question if the subject of this post is it still true (because I tried with no success...) and/or it will be fixed in version 3.

if not, is there a workaround to do so ? because I'm in urgent need to provide a 3D chart for my customer and I need to show marks (or a box with custom info) on towers mouseover.

my actual version is Framework 2.0 Build 2.0.2652.22325

thanks in advance,
Max.

Edu
Advanced
Posts: 206
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia

Post by Edu » Mon May 21, 2007 10:01 am

Hi Max

Thanks for reporting this, I could reproduce the issue here and this seems to be a bug. I've added it (TF02012221) to our defect list to be fixed for future releases.

In the meantime a workaround can be to use a Marks, and also with the "GetSeriesMark" event you can hide some marks.

Code: Select all

    tower1.Marks.Visible = true; 

    private void tower1_GetSeriesMark(Steema.TeeChart.Styles.Series series, Steema.TeeChart.Styles.GetSeriesMarkEventArgs e)
        {
            if (e.ValueIndex>6) //use ValueIndex to control which marks you want to change.
                  e.MarkText = ""; //use the MarkText to change the text of mark or hide it.
        }
Best Regards,
Edu

Steema Support Central
http://support.steema.com/

MaZ
Newbie
Newbie
Posts: 4
Joined: Wed Nov 29, 2006 12:00 am

Post by MaZ » Mon May 21, 2007 1:19 pm

Thanks Edu, I'll try to fit my needs with this workaround !

Edu
Advanced
Posts: 206
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia

Post by Edu » Fri May 25, 2007 8:43 am

Hi Max

The bug has been fixed, the fix will be available in next v3 maintenance release
Best Regards,
Edu

Steema Support Central
http://support.steema.com/

Post Reply