Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 1704

Summary: BubbleCloud Series clickseries event doesn’t trigger.
Product: .NET TeeChart Reporter: sandra pazos <sandra>
Component: SeriesAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: normal CC: chris
Priority: Normal    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description sandra pazos 2016-11-30 11:28:52 EST
BubbleCould Series clickSeries event doesn’t trigger. 
It works fine in TeeChart VCL.
The code below shows the problem: 
private void InitializeChart()
        {
            tChart1.Aspect.View3D = false;
            Steema.TeeChart.Styles.BubbleCloud bc = new Steema.TeeChart.Styles.BubbleCloud(tChart1.Chart);
            bc.FillSampleValues(3);
            bc.Click += Bc_Click;
       
        }

        private void Bc_Click(object sender, MouseEventArgs e)
        {
            this.Text = "Series Clicked";
        }