Browse our Products

Aspose.Diagram for Python via Java 23.12 Release Notes

Improvements and Changes

KeySummaryCategory
DIAGRAMJAVA-51164Load diagram with document properties onlyNew Feature
DIAGRAMJAVA-51150Aspose Total and TomEE 9 support (Jakarta APIs)Bug
DIAGRAMJAVA-51163Connector rule endpoint coming back nullBug

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 getRelationShapeCollection in Shape

  • Returns RelationShapeCollection that represents the relationshapes of one shape.
shape.getRelationShapeCollection();

Adds LoadDataFilterOptions in Diagram

  • Represents the options to filter data when loading diagram from template.

Adds LoadFilter in Diagram

  • Represents the filter that provides options for loading data when loading diagram from template.
LoadOptions o = new LoadOptions( LoadFileFormat.VSDX ); 
LoadFilter filter = new LoadFilter();
filter.setLoadDataFilterOptions(com.aspose.diagram.LoadDataFilterOptions.DOCUMENT_PROPERTIES);
o.setLoadFilter (filter);
Diagram diagram = new Diagram("template.vsdx", o);