Show values ​​of all series in dotted scale (ASP.NET CHART)

I am using the asp.net chart control to present the chart with folded columns.

I can create a tooltip with the mouse using this code:

series.MapAreaAttributes = "onmouseover=\"showTooltip('#VALY');\"";

... which works great. But I cannot find a way to show the rest of the values ​​for the other series in this column.

Example: I have 2 series (Paid and Unpaid) that make up one column in a chart. When I click on any of the series, I want to show both the value of the moused-over series and the other series contained in this particular column with the footer.

Can someone point me in the right direction?

+3
source share
1 answer

- , , : - .

series.Points[index].MapAreaAttributes = "onclick=\"window.opener.location=this.href;window.opener.focus();return false;\"";
+1

Source: https://habr.com/ru/post/1738935/


All Articles