A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developers.arcgis.com/javascript/latest/sample-code/visualization-pie-chart/ below:

Pie charts | Sample Code | ArcGIS Maps SDK for JavaScript 4.33

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,
      },
    ],
  },
});

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4