Appearance of SfCircular Charts

Chart sizing

Chart renders based on the parent widget size. If you need the chart to be rendered in specific size, then set the size(width/height) to the parent widget. By default the initialization the only the SfCircularChart without defining any of its properties renders a white screen.

  • dart
  • @override
        Widget build(BuildContext context) {
          return Scaffold(
            body: SafeArea(
              child: Center(
                child: Container(
                  height: 300, // height of the Container widget
                  width: 350,  // width of the Container widget
                  child: SfCircularChart()
                )
              )
            )
          );
        }

    Chart margin

    Margin to the chart can be specified using the margin property.

  • dart
  • @override
        Widget build(BuildContext context) {
          return Scaffold(
            body: SafeArea(
              child: Center(
            child: Container(
              height: 300, 
              width: 350, 
              child: SfCircularChart(
                  borderColor: Colors.red,
                  borderWidth: 2,
                  // Sets 15 logical pixels as margin for all the 4 sides.
                  margin: EdgeInsets.all(15)
              )
            )
          );
        }

    Chart area customization

    You can customize the Area of the chart using the below properties.

  • dart
  • @override
        Widget build(BuildContext context) {
          return Scaffold(
            body: SafeArea(
              child: Center(
                child: Container(
                  height: 300, 
                  width: 350, 
                  child: SfCircularChart(
                    backgroundColor: Colors.lightGreen,
                    backgroundImage: 'images/livechart.png',
                  )
                )
              )
            )
          );
        }