<ChartAndTableComponent :series="[soil_temp, ambient_temp]" :timestamps="soil_timestamp"
:legends="['Soil Temperature °C', 'Ambient Temperature °C']" :values="[soil_timestamp, soil_temp, ambient_temp]"
:headers="temp_headers"></ChartAndTableComponent>
<ChartAndTableComponent :series="soil_moisture" :timestamps="soil_timestamp" :legends="'Moisture'"
:values="[soil_timestamp, soil_moisture]" :headers="moisture_headers"></ChartAndTableComponent>
so I want to use same data format for table and chart which is arrays
but I want to display v-data-table items as array of arrays with no objects
when I refer example of v-data-table items are accessing through array of objects
I want solution
New contributor
Keerthana mettapalli is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.