Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
saad8986
Contributor
Contributor

Sankey chart in mashup

Hi,

Is it possible to create a sankey chart from the Qlik visualization bundle in a mashup? Looking at the Qlik visualiztion api documentation it does not look like that is possible. Please let me know if this is possible. 

I have tried the following:

app.visualization.create('sankeychart', [{
"qDef": {
"qFieldDefs": ["foo"],
"qFieldLabels": ["Foo"]
}
},
{
"qDef": {
"qFieldDefs": ["bar"],
"qFieldLabels": ["Bar"]
}
},
{
"qDef": {
"qDef": "=sum(something)",
"qLabel": "Some label"
}
}]).then(vis => {
vis.show("div-foo-bar");
});

When I try the above I get teh following error in the console:

Uncaught (in promise) Devhub.Visualization.InvalidType

 

Labels (1)
0 Replies