Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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
Luminary Alumni
Luminary Alumni

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
Luminary Alumni
Luminary Alumni

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.