Hi Chong,
Query: When mouse over a specific bar/point in chart, when tooltip appears, the chart will highlight that point/bar, while dimming the other points/bars
We have analyzed your requirement and we have prepared a sample based on this. Please find the attached sample.
Query: When mouse over on the series on the legend, the chart only highlight the series in the chart while dimming the other series.
Currently we do not have any hit test support (events) for chart legend.
Please let us know if you have any queries.
Thanks,
Mohammed Azarudeen.
Hi Chong,
Query1 - Setting
Opacity to achieve requirement:
We have modified the sample based on your requirement. Please
download it from the given below location.
Query2 - CustomColumnSeries:
In order to get chart series segments we have override the series,
since Segments is internal property.
Please let us know if you request further assistance on
this.
Regards,
Suresh S
Hi Chong,
Sorry for the inconvenience caused. Please download the
sample from the given below location.
Please let us know if you request further assistance on
this.
Regards,
Suresh S
Hi Chong,
Due to some technical problem the last sample attachment
wasn't delivered. We have achieved your
requirement in other way as shown in the below code snippet. Also, please
download the sample from below location.
Code Snippet[C#]:
if (_segment != segment)
{
SolidColorBrush mySolidColorBrush = (_segment.Interior as
SolidColorBrush).Clone();
mySolidColorBrush.Opacity = 0.5;
_segment.Interior = mySolidColorBrush;
}
Regards,
Suresh S