Currently, the delimiter is hardcoded to ",". Add a setting that allows changing this and also synchronizing it with the current culture of the system.
Enable the customers to create and modify .pptx (PowerPoint) files . They need processing as well as showing such documents.
Currently filtering with virtualized RadComboBox is not supported as the filtering feature works with the containers (changes their Visibility).
Currently, if you create a custom DraggingService of RadDiagram and override the drag methods (StartDrag, Dragging, etc.), the corresponding drag events stop reporting if you don't call the base method implementation. Add protected methods like OnDragging and OnStartDrag that raise the corresponding events. This will allow the developer to manually raise the events if the drag method overrides are implemented from scratch, without calling the base implementation.
In the meantime, you can use custom events like so:
public class CustomDraggingService : DraggingService
{
public event EventHandler<PositionChangedEventArgs> CustomDraggingEvent;
public CustomDraggingService(IGraphInternal graph) : base(graph)
{
}
public override void Drag(Point newPoint)
{
CustomDraggingEvent?.Invoke(this, new PositionChangedEventArgs(new Point(), newPoint, null));
// custom implementation here
}
}
The current implementation of the Code128 symbology class used with RadBarcode throws an InvalidSymbolException for characters with codes greater than 127.
As you can see from this table, there are many special characters in Code128 that have larger codes:
https://en.wikipedia.org/wiki/Code_128#Bar_code_widths
It would be useful to have these in applications which need to modify a reader device's behavior with barcode control characters in order to communicate properly.
Currently SvgImage does not support the following inner animation:
<svg xmlns="http://www.w3.org/2000/svg"