Hello everyone. I would like your help about this problem of mine.
I used Syncfusion Chart for the first time and I managed to bind my dataset to the chart.
Now the problem is, it is not displaying the data the way I expected it to.

Check chart above for the chart.
All I want is that, it would display the Date of the data, not some gibberish numbers like what I am seeing below.
I hope you can help me. I dont really understand.
Here is my current
code by the way.
Update: I tried setting the value type of the PrimaryXAxis to custom and now the graph is alignment of data is way off the mark.
Here is the code:
chartProcedureResult.Series.Clear()
chartProcedureResult.Text = seriesName & " results history"
Dim model As ChartDataBindModel = Nothing
Dim xAxisLabelModel As ChartDataBindAxisLabelModel = Nothing
model = New ChartDataBindModel(chartDS, "TestResult")
model.XName = "procedure_date"
model.YNames = New String() {"result"}
chartProcedureResult.Indexed = True
Dim series As New ChartSeries(seriesName, ChartSeriesType.Spline)
With series
.SeriesModel = model
.Text = series.Name
.Style.DisplayText = True
.Style.Border.Width = 3
.Style.TextOrientation = ChartTextOrientation.Smart
.Style.Symbol.Shape = ChartSymbolShape.Circle
End With
Me.chartProcedureResult.Series.Add(series)
xAxisLabelModel = New ChartDataBindAxisLabelModel(chartDS, "TestResult")
xAxisLabelModel.LabelName = "procedure_date"
chartProcedureResult.PrimaryXAxis.LabelsImpl = xAxisLabelModel
chartProcedureResult.PrimaryXAxis.ValueType = ChartValueType.Custom
chartProcedureResult.PrimaryXAxis.Title = "Procedure date"
chartProcedureResult.PrimaryYAxis.Title = "Results"
chartProcedureResult.PrimaryYAxis.ValueType = ChartValueType.Double