I am using MicroCharts plugin for making charts. I am getting values form api service like this-
"[0.0,0.0,0.0,0.0,210.00,210.00,210.00,12151.50,12151.50,0.0,0.0,0.0]"
using this-
var request = new HttpRequestMessage(HttpMethod.Post, url);
var client = new HttpClient();
var response = await client.SendAsync(request);
var jwt = await response.Content.ReadAsStringAsync();
and i want add these values in a line chart. I tried different things but it did not work. Any suggestions?