Pie charts

This sample demonstrates how to create a PieChartRenderer. Pie chart visualizations are used for visualizing multiple attribute values of a feature in one glance in point and polygon layers.

This app uses pie charts to visualize the highest levels of education attained by the population in each county. The value and color of each pie slice is specified in the attributes property. The size of each pie is driven by a visual variable based on the number of people represented in each county.

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
const layer = new FeatureLayer({
    portalItem: {
      id: "a7c5a8c8ea42416e8bd92df9872cc51b"
    },
    renderer: {
      type: "pie-chart", // autocasts as new PieChartRenderer
      size: 10,
      attributes: [
        {
          color: "#ed5151",
          label: "No high school diploma",
          field: "SOMEHS_CY"
        },
        {
          field: "HSGRAD_CY",
          color: "#149ece",
          label: "High School Diploma"
        },
        {
          field: "CollegeEducated",
          color: "#a7c636",
          label: "College educated"
        }
      ],
      backgroundSymbol: { // polygon fill behind pie chart
        color: [127, 127, 127, 0.2],
        outline: {
          width: 1,
          color: [255, 255, 255, 0.3]
        }
      },
      outline: {
        width: 1.5,
        color: "white"
      },
      visualVariables: [
        {
          type: "size", // size visual variable based on population represented in each pie
          valueExpression:
            "$feature.SOMEHS_CY + $feature.HSGRAD_CY + $feature.CollegeEducated",
          minDataValue: 20000,
          maxDataValue: 500000,
          minSize: 12,
          maxSize: 48
        }
      ]
    }
});

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.