Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
vighnesh_gawad
Partner - Contributor III
Partner - Contributor III

Creating Combo Chart using Qlik Engine JSON API

Hi Guys,
I’m trying to create a combo chart using the Qlik Engine JSON API. For this, I referred to the documentation here:
[https://help.qlik.com/en-US/sense-developer/May2025/Subsystems/EngineJSONAPI/Content/genericobject-l...)

I followed these steps:

1. Created a sheet in the app
2. Retrieved the properties of the sheet
3. Retrieved the layout of the sheet
4. Created a combo chart on the sheet
5. Retrieved the layout of the sheet again
6. Retrieved the properties of the combo chart
7. Retrieved the layout of the combo chart

All the steps executed successfully, Through Api i can check that combo chart object is created. but I’m not able to see the combo chart on the sheet.

Am I missing any step, or is there something additional I need to do?

Labels (1)
1 Solution

Accepted Solutions
Øystein_Kolsrud
Employee
Employee

You need to add a pointer to the created combo chart in a cell of the sheet. This part of how the client works is not considered an official part of the API so it's is not publicly documented. But it's relatively easy to reverse engineer it. Just have a look at the cell structure of a sheet you create through the GUI. And I can recommend this tool for inspecting properties and layouts:

https://community.qlik.com/t5/Qlik-Sense-Documents/Qlik-Explorer-for-Developers/ta-p/1949809

Here is another thread on thread on the topic by the way:

https://community.qlik.com/t5/Integration-Extension-APIs/Adding-objects-to-sheet-with-JSON-API/td-p/...

View solution in original post

2 Replies
Øystein_Kolsrud
Employee
Employee

You need to add a pointer to the created combo chart in a cell of the sheet. This part of how the client works is not considered an official part of the API so it's is not publicly documented. But it's relatively easy to reverse engineer it. Just have a look at the cell structure of a sheet you create through the GUI. And I can recommend this tool for inspecting properties and layouts:

https://community.qlik.com/t5/Qlik-Sense-Documents/Qlik-Explorer-for-Developers/ta-p/1949809

Here is another thread on thread on the topic by the way:

https://community.qlik.com/t5/Integration-Extension-APIs/Adding-objects-to-sheet-with-JSON-API/td-p/...

vighnesh_gawad
Partner - Contributor III
Partner - Contributor III
Author

Thanks. I was able to figure it out using Qlik Explorer for Developers