Hello,
I customized ribbon for a pivot chart form using the below given code - it displays the only required buttons.
However, when I disable "allow full menus" only empty tab is displayed.
How can it be fixed?
Thank you for any suggestions.
I customized ribbon for a pivot chart form using the below given code - it displays the only required buttons.
However, when I disable "allow full menus" only empty tab is displayed.
How can it be fixed?
Thank you for any suggestions.
Code:
<!-- Piovot chart ribbon --> <customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui"> <ribbon startFromScratch="true"> <tabs> <tab id="PivotChartTools" label="Narzędzia wykresu"> <group id="ChartTools" label="Narzędzia wykresu"> <toggleButton idMso="PivotFieldList" label="Lista dostępnych pól" size="large"/> <toggleButton idMso="PivotDropAreas" size="large"/> <toggleButton idMso="PivotChartLegendShowHide" label="Pokaż legendę" size="large"/> </group> </tab> </tabs> </ribbon> </customUI>
Comment