Aspose.Diagram for Python via Java 22.12 Release Notes

Improvements and Changes

KeySummaryCategory
DIAGRAMJAVA-51061new feature for draw line with multiple points for javaEnhancement
DIAGRAMJAVA-51055Unexpected output sent to STDOUT when loading Visio fileBug
DIAGRAMJAVA-51064Wrong shape appearance with new jar file (aspose-diagram-22.11)Bug

Public API and Backwards Incompatible Changes

The following is a list of any changes made to the public API such as added, renamed, removed or deprecated members as well as any non-backward compatible change made to Aspose.Diagram for Java. If you have concerns about any change listed, please raise it on the Aspose.Diagram support forum.

Adds ungroup in Shape

  • Ungroup Shape
shape.ungroup();

Adds drawLine in page

  • The process of drawing line.
double[] xy = new double[] { 0, 0, 0.5, 0.5, 0.5, 0, 0, 0 };
long shapeId2 = page.drawLine(1, 1, 1, 1, xy);

Adds drawPolyLine in page

  • The process of drawing Polyline.
double[] xy = new double[] { 0, 0, 0.5, 0.5, 0.5, 0, 0, 0 };
long shapeId2 = page.drawPolyLine(1, 1, 1, 1, xy);