I'm trying to set the value of the pointer with a string from the code behind, I have the following:
<PointerCollection>
<ej:Pointers NeedleType="Rectangle" Value="1300" Length="45" Width="1">
<Border Color="#3AB54B"></Border>
</ej:Pointers>
</PointerCollection>
In a normal situation I would do the following:
<ej:Pointers runat="server" ID="Point" NeedleType="Rectangle" Value="1300" Length="45" Width="1">
Then in the code behind:
Point.Value = 300;
However, when I do this I get the error:
Error Type 'Syncfusion.JavaScript.DataVisualization.Models.Pointers' does not have a public property named 'ID'.
Any help would be much appreciated!