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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Dynamic position change

Is it possible to change X and Y coordinates dynamically in a chart so that keep always distance between two objects/charts constant irrespective of data present.

4 Replies
avinashelite

Hi Praveena,

Its not possible in Qlikview ...Try with Macro.

jagan
Partner - Champion III
Partner - Champion III

Hi Praveena,

It is not possible in Qlikview, you can try with Macro.  Instead you can use two similar charts placing at different positions by showing and hiding based on your requirement.

But using Macro you will have lot of issues, I suggest using two charts.

Regards,

Jagan.

ashfaq_haseeb
Champion III
Champion III

Hi,

Not possible directly, but can be done via macro.

have a look at the attached application.

Regards

ASHFAQ

jagan
Partner - Champion III
Partner - Champion III

Hi,

Try this macro

** move chart object 20 pixels down and 15 right **

Sub MoveChart

  set obj = ActiveDocument.GetSheetObject("CH09")

    pos = obj.GetRect

    pos.Top = pos.Top + 20

    pos.Left = pos.Left + 15

    obj.SetRect pos

End Sub

Regards,

Jagan.