{
"content": {
"title": "Schema",
"cellValues": [
[
"c1",
"count"
],
[
"DoubleType",
"LongType"
]
],
"id": 3,
"name": "Histogram",
"type": "table"
}
}
I have this JSON coming , from this i want to make a table using javascript or Jquery. The output should be like. The JSON object is coming as cell values in a list , that is creating a problem. I want to map c1 with DoubleType and count with longType in each cell.
c1 count
DoubleType LongType
Please suggest...