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.
Mark tips tool does not work with 3D tower series
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.
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.
}