CSOval QML Type

Display a circle or ellipse. More...

Import Statement: import CSDataQuick.Components 1.0
Inherits:

CSGraphics

Detailed Description

The ellipse is drawn always within the item boundary.

Row {
    spacing: 5
    CSOval {
        width: 50
        height: 50
    }
    CSOval {
        width: 100
        height: 50
        fillStyle: FillStyle.Outline
    }
}