This question is locked. New answers and comments are not allowed.
I am doing this to manually add a ChartLegendItem:
ChartLegendItem cli = new ChartLegendItem(); cli.Label = data.company; cli.MarkerShape = MarkerShape.Circle; cli.Foreground = chart.PaletteBrushes[i++]; chart.DefaultView.ChartLegend.Items.Add(cli); And I am getting an IE error:
 Unhandled Error in Silverlight Application Object reference not set to an instance of an object. at Telerik.Windows.Controls.Charting.ChartLegendItem.get_HoverScope()
at Telerik.Windows.Controls.Charting.ChartLegendItem.OnMouseLeave(MouseEventArgs e)
at System.Windows.Controls.Control.OnMouseLeave(Control ctrl, EventArgs e)
at MS.Internal.JoltHelper.FireEvent(IntPtr unmanagedObj, IntPtr unmanagedObjArgs, Int32 argsTypeIndex, String eventName)
Any suggestions?
--Jeff