Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have a chart in Qlikview, however I want to change the property in Layout>Use Border> Shadow Intensity to No Shadow through macro. I seen that in iChartProperties, I could only see Border Color and Border Width but not Shadow Intensity.
Shadow Intensity is member of iFrame Class.
Could somebody help me to get Shadow Intensity to No Shadow??
Thanks and regards,
Vj
Hi.
There is an example in APIGuide.qvw
rem Sets shadow intensity to medium
set mybox = ActiveDocument.GetSheetObject("LB01")
set mbp = mybox.GetProperties
mbp.Layout.Frame.ShadowIntensity = 2 '0=No shadow, 1=Soft, 2=Medium, 3=Intense
mybox.SetProperties mbp
Hi.
There is an example in APIGuide.qvw
rem Sets shadow intensity to medium
set mybox = ActiveDocument.GetSheetObject("LB01")
set mbp = mybox.GetProperties
mbp.Layout.Frame.ShadowIntensity = 2 '0=No shadow, 1=Soft, 2=Medium, 3=Intense
mybox.SetProperties mbp