CodeBeamOrg / CodeBeam.MudBlazor.Extensions

Useful third party extension components for MudBlazor, from the contributors.

Home Page:https://mudextensions.codebeam.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SignaturePad has zero height inside Stepper

tkennedy13 opened this issue · comments

When displayed inside a Stepper, the SignaturePad is not useable because the signing canvas is not fully visible. It's like the SignaturePad has a zero height and all that is visible is the buttons.

image

  ```
                          <MudSignaturePad Elevation="2" 
                                                 Variant="Variant.Outlined"                                                             
                                                 ShowDownload="false"
                                                 ShowLineWidth="false"
                                                 ShowStrokeStyle="false"
                                                 ShowLineCapStyle="false"
                                                 ShowLineJoinStyle="false"                                            
                                                 Options="_options"
                                                 ValueChanged="SignatureChanged"
                                                 Value="SignatureRaw"
                                                 CanvasContainerClass="pa-3" />

    private SignaturePadOptions _options = new SignaturePadOptions
    {
        LineCapStyle = LineCapTypes.Round,
        LineJoinStyle = LineJoinTypes.Round,
        LineWidth = 4,
    };