Rotate the visio page in clockwise

Hi Team ,

Can you please suggest if there is any option to rotate the entire Visio page by 90 degree clockwise ?

Currently the page looks like below.

image.png (30.8 KB)

I want to rotate the entire page clockwise by 90 degree.

image.png (25.1 KB)

Thanks,
Kishan

@kishannavale

We have logged an investigation ticket as DIAGRAMJAVA-50820 in our issue tracking system to analyze your requirements. We will let you know as soon as we complete the investigation. Please be patient and spare us some time.

@kishannavale

Using Microsoft Visio, you also cannot set the rotation angle of the entire page on the interface.
We can set the rotation angle of each shape to achieve this feature.

ShapeCollection shapes = diagram.getPages().get(0).getShapes();
for(int i = 0;i <shapes.getCount();i++) {
Shape shape = shapes.get(i);
shape.setAngle(90* Math.PI / 180);
}