I have tried to do this in a few places... but perhaps this is not supported
I'd like to be able to apply HTML formatting to the LegendItem Title so that when the (Datapoint.LegendTitle) in the LabelFormatting routine causes the title to have html applied.
Private Sub LegendElement_VisualItemCreating(sender As Object, e As LegendItemElementCreatingEventArgs)e.ItemElement = New CustomLegendItemElement(e.LegendItem)
e.LegendItem.Title = "<html><span><font=Arial><Color=White><size=18>" & e.LegendItem.Title & "</span></html>"
e.ItemElement.Font = FontSegio14
End Sub