Good evening,
I'm working since 8 hours on a simple ASP.net Chart Website (dotnet highcharts.com) and I'm having incredible trouble with the following:
I have to add a series to a chart with an 2 dimensional array of Object. So I can't use anything else.
This is how it looks right now, with hardcoded values:
TokioData = New Object(,) {{1500, 3},{1700, 5}}
I only need to have the {value1, value2} part being added from a list / string or whatever.
But I can't get it to work ... I'm really not having any idea, as I'm googling the whole day, just to find out how to add KeyValuePairs to an 2D-Array.