![]() | Steema Issues DatabaseNote: 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. |
| Summary: | Clicked() method not implemented in Pyramid series | ||
|---|---|---|---|
| Product: | .NET TeeChart | Reporter: | christopher ireland <chris> |
| Component: | Series | Assignee: | Steema Issue Manager <issuemanager> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | --- | ||
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows | ||
| Chart Series: | --- | Delphi / C++ Builder RAD IDE Version: | |
Code to reproduce: Pyramid series; private void InitializeChart() { series = new Pyramid(tChart1.Chart); series.FillSampleValues(); series.Click += Funnel_Click; tChart1.MouseClick += TChart1_MouseClick; } private void TChart1_MouseClick(object sender, MouseEventArgs e) { int index = series.Clicked(e.Location); if(index > -1) { MessageBox.Show(series.YValues[index].ToString()); } }