I have a teeChart .NET 2018.12.17 with a legend with enabled checkboxes (Legend displays SeriesNames). How can I:
- Remove some of checkboxes (I need to have checkboxes only for several series, not all of them)? Series.ShowInLegend=false is not suitable for me because I need to have SeriesNames and series type pictogram for all series on chart.
- Distinguish two types of clicking the legend: clicking a checkbox and clicking a series name? Clicking checkbox should work as usual - enable/disable series, but clicking series name should invokes colorSelectDialog to choose series color (for now in both cases I use
ClickLegend event and distinguish by using right mouse button for color selection - but our customer require changing it to left button).