Change Pivot Setup output location
When you click the pivot setup after clicking the button, the pivot setup modal window is placed on the left and displayed.
How to change Pivot Setup output location
You can place the Pivot Setup area in the center, left, or right with the modal, left, and right properties.
pivot.setSetupOptions({position: "left"}); //"modal", "left", "right"
When applying an option, the setup window is not automatically displayed and you must click the setup button in the pivot.
Below is an example of the operation of the option application button.
function btnSetSetupLeft(){
pivot.hideSetupView();
pivot.setSetupOptions({position: "left"});
pivot.showSetupView();
}
function btnSetSetupRight(){
pivot.hideSetupView();
pivot.setSetupOptions({position: "right"});
pivot.showSetupView();
}
function btnSetSetupModal(){
pivot.hideSetupView();
pivot.setSetupOptions({position: "modal"});
pivot.showSetupView();
}