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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

make static map with scatter chart

Hi everybody

I want to create a scatter chart like picture

Result.gif

I don't want to use google map.

i want to use pictures for my country.

best wishes

behrang

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

You need to create a scatter chart with the country image as a background.  Next, figure out the chart co-ordinates (X and Y) for each data point (Region).  After that, create a table in the script, containing Region, X, and Y, something like this:
Region_Location:

LOAD * INLINE [

Region,        X,    Y

North East,  20,  15

...

];

In the scatter chart, use these coordinates as the first two expressions, and the 3rd expression will define the data point size.  Region will be the chart dimension.

Hope it helps.

View solution in original post

1 Reply
Anonymous
Not applicable
Author

You need to create a scatter chart with the country image as a background.  Next, figure out the chart co-ordinates (X and Y) for each data point (Region).  After that, create a table in the script, containing Region, X, and Y, something like this:
Region_Location:

LOAD * INLINE [

Region,        X,    Y

North East,  20,  15

...

];

In the scatter chart, use these coordinates as the first two expressions, and the 3rd expression will define the data point size.  Region will be the chart dimension.

Hope it helps.