MindFusion.Diagramming for Blazor のリリース

Released: Dec 10, 2025

2.1.1 での更新項目

機能

  • Coordinates in vertical scale of Ruler are now drawn rotated, allowing for longer labels.
  • Complex Tag and ID objects (class or struct instances) are now saved using System.Xml.Serialization.XmlSerializer when saving diagram to XML. The SerializeTag and DeserializeTag still let you implement custom serialization of the objects.
  • Complex Tag and ID objects (class or struct instances) are now saved using System.Text.Json.JsonSerializer when saving diagram to JSON. The JsonSerializeTag and...

Released: Dec 1, 2025

2.1 での更新項目

機能

Added Ruler Control

  • The Ruler control provides horizontal and vertical scales that help users measure and align diagram items. Place the DiagramView element as a child of the Ruler one to establish the binding between them.
  • The ruler tracks mouse movements and modifications being performed on an item, and displays markers over the scales indicating the current position in diagram's coordinate system.
  • The colors of these markers can be changed using the PointerColor and ProjectionColor...

Released: Oct 14, 2025

2.0 での更新項目

機能

Paged Containers

  • PagedContainerNode is a ContainerNode subclass that organizes its child nodes into a collection of pages, represented by ContainerPage objects. This allows for the creation of more organized diagrams where nodes can be grouped into logical views within a single container. Only the nodes belonging to the currently active page, specified by CurrentPage property, are rendered and participate in user interactions.

ItemLabel Image

  • New Image property added to ItemLabel lets you...

Released: Jan 3, 2025

1.0.7 での更新項目

機能

  • Customize node action icons - the Renderers class lets you customize the appearance of nodes' fold, scroll and collapse icons, by providing IGraphics drawing callbacks, bitmap images or SVG drawings:
    • Set ExpandIconRenderer to override the appearance of collapse / expand buttons displayed by Expandable nodes.
    • Set ScrollIconRenderer to override the appearance of scroll arrows displayed by Scrollable tables.
    • Set FoldIconRenderer to override the appearance of fold / unfold buttons displayed by...

Released: Nov 4, 2024

1.0.6 での更新項目

機能

  • New Mouse Events
    • NodePointed event has been replaced by a set of more specific events: NodePointerEnter and NodePointerLeave are raised when the mouse pointer respectively enters or leaves the boundaries of a node.LinkPointed event has been replaced by a set of more specific events: LinkPointerEnter and LinkPointerLeave are raised when the mouse pointer respectively enters or leaves the boundaries of a link. NodeHovered fires if the pointer rests over a node for 'HoverDelay' milliseconds...