Hi,
How does it actually work? I mean Kendo.Mvc.UI.Fluent.ChartLabelsBuilderBase.VisibleHandler() method. and how a handler used as the parameter should be implemented/used. I would expect that such a handler returns true or false and controls associated labels visible attribute but I couldnt achieve this.
see a part of my code below...
series.Column("StatsFaultsInInspections", "ARGB_RiskColorHexString", "RiskLevelName") .Labels(x => x.Position(ChartBarLabelsPosition.OutsideEnd) .Visible(true) .Template("#= value # Tags\\n\\r#= kendo.format('{0:n2}', dataItem.StatsFaultsInInspectionsPercentOfInSameRisk) #%") .VisibleHandler("labelsVisibility")).Name("Tags with faults");