Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
saranrajk
Contributor II
Contributor II

Create visualizations on the fly using .NetSDK

Hi, Can anyone tell me that, how to create charts on the fly using .Net SDK?

2 Replies
Øystein_Kolsrud
Employee
Employee

Not sure what your proficiency with the SDK is, but you might want to check out the "Create*" methods on ISheet:

https://help.qlik.com/en-US/sense-developer/February2018/apis/net%20sdk/html/T_Qlik_Sense_Client_ISh...

For instance this method can be used to create a bar chart:

https://help.qlik.com/en-US/sense-developer/February2018/apis/net%20sdk/html/M_Qlik_Sense_Client_ISh...

To learn how to navigate through the contents of an app, I can recommend this example:

https://github.com/AptkQlik/PublicExamples/tree/master/AppTraverser

Hope it helps!

saranrajk
Contributor II
Contributor II
Author

Hi Øystein Kolsrud thank you for your response.