ContributionsMost RecentNewest TopicsMost LikesSolutionsRe: Extract Object Data from the column Thank you for the response bogdan-karlenko. I am using compose SDK to embed the Line chart in my application. I connected the DB to Sisense and from the Sisense I am using following command to generate the data model representation of the table. npx @sisense/sdk-cli@latest get-data-model --username "<username>" --output src/sample-ecommerce.ts --dataSource "Sample ECommerce" --url <your_instance_url> Using this data model to plot the Line chart like this <SisenseContextProvider url="<instance url>" // replace with the URL of your Sisense instance token="<api token>" // replace with the API token of your user account > <Chart dataSet={DM.DataSource} chartType={'line'} dataOptions={{ category: [DM.Commerce.AgeRange], value: [measureFactory.sum(DM.Commerce.Revenue)], breakBy: [], }} styleOptions={{ legend: { enabled: true, position: 'bottom', }, }} onDataPointClick={(point, nativeEvent) => { console.log('clicked', point, nativeEvent); }} /> </SisenseContextProvide As my data is in an Object {sale:[123,1212,232, 564]}. It is not working properly. So I just want to know is there any way we can extract the data from the generated Data Model? Extract Object Data from the column Hi, My data is in an Object in a column. I want to use that data to showcase in the Line chart. Currently I am using compose SDK to create a Line chart. Could anyone can help me to extract that data? Column looks like this: {"sales": [1570.73, 1020.58]}. Want to extract the sales data. Solved