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

I want same size of the chart and expression column

Is there is way to not to change size of the chart.

I have two dimension and one expression in pivot chart.

2nd dimension is collapsed .so it will show 1st column and expression

when i expand it the size of the chart should remain same and also expression  column width should be same.

PFA QVW and Excel for reference

15 Replies
saumyashah90
Specialist
Specialist
Author

Hi balraj,

1st figure shows always expanded ,which i dont want.

in second figure when i right click on it and do collapse all or expand all th size of the chart changes..which i dont want.

HirisH_V7
Master
Master

Hi,

Check now,

PFA

-Hirish

HirisH
“Aspire to Inspire before we Expire!”
saumyashah90
Specialist
Specialist
Author

Hi hirish,

i want size of combination of all 3 columns and 2 columns should be same.

settu_periasamy
Master III
Master III

Hi,

May be try with 'Indent Mode' in Style Tab

Capture.JPG

flipside
Partner - Specialist II
Partner - Specialist II

Good suggestion.

I was going down the route of using macros on buttons ...

sub Expand
set obj = ActiveDocument.getsheetObject("CH02")
set objprop = obj.GetProperties
objprop.TableProperties.PivotAlwaysFullyExpanded = true

set objpropdims = objprop.Dimensions
objpropdims(0).ColWidth = 400
obj.SetProperties objprop
end sub

sub Collapse
set obj = ActiveDocument.getsheetObject("CH02")
set objprop = obj.GetProperties
objprop.TableProperties.PivotAlwaysFullyExpanded = false

set objpropdims = objprop.Dimensions
objpropdims(0).ColWidth = 700
obj.SetProperties objprop
end sub

.. or duplicating the pivot table and using conditional show to display the collapsed or expanded as desired.

flipside

HirisH_V7
Master
Master

Hi,

This way,

PFA,

Hirish

HirisH
“Aspire to Inspire before we Expire!”