This question is locked. New answers and comments are not allowed.
Is there a way to create dynamic series.
So I will have an object with a date and a list of objects with the ErrorType and the Total of that error for the day.I want to have a line for each error type plotted for a daily count.
Public Class ChartData Public Property Errors() As IList(Of TypeInfo) ''' <summary> ''' Gets or sets the date string. ''' </summary> ''' <value>The date string.</value> Public Property DateString() As String Public Sub New() Errors = New List(Of TypeInfo) End Sub End Class Public Class TypeInfo ''' <summary> ''' Gets or sets the type of the error. ''' </summary> ''' <value>The type of the error.</value> Public Property ErrorType() As String ''' <summary> ''' Gets or sets the total. ''' </summary> ''' <value>The total.</value> Public Property Total() As Integer End ClassSo I will have an object with a date and a list of objects with the ErrorType and the Total of that error for the day.I want to have a line for each error type plotted for a daily count.