3. Symbology¶
Goal: Style any layer with the right symbology type for the data — single, unique values, graduated colors, dot density, or charts.
Open the Symbology pane¶
Right-click a layer → Symbology. Or Feature Layer ribbon → Symbology dropdown.
The 7 symbology types¶
flowchart TD
A{Your data} --> B[All same?]
B -->|Yes| Single[Single Symbol]
A --> C[Categories]
C --> Unique[Unique Values]
C --> UnMany[Unique Values<br/>many fields]
A --> D[Numeric]
D --> GC[Graduated Colors<br/>e.g., income choropleth]
D --> GS[Graduated Symbols<br/>e.g., point sizes]
D --> PV[Proportional Symbols<br/>continuous size]
D --> DD[Dot Density<br/>e.g., population]
D --> Heat[Heatmap<br/>kernel density of points]
A --> E[Charts]
E --> Pie[Bar / Pie chart symbology]
classDef root fill:#4338ca,stroke:#312e81,color:#fff
class A root | Type | Use for |
|---|---|
| Single Symbol | Reference data, all features the same |
| Unique Values | Categories: land use, type, district |
| Graduated Colors | Choropleth: income by tract |
| Graduated Symbols | Numeric points: city population sizes |
| Proportional Symbols | Continuous size by value |
| Dot Density | Polygons → dots representing population |
| Heatmap | Density of points |
Picking a classification (numeric)¶
Open Symbology → Method:
| Method | When |
|---|---|
| Natural Breaks (Jenks) | Default, good for skewed data |
| Quantile | Equal count per class — emphasizes ranking |
| Equal Interval | Equal value range — easy to read |
| Geometric Interval | Skewed data with extremes |
| Standard Deviation | Show how features deviate from the mean |
| Manual Interval | You set thresholds (poverty line, elevation contours) |
→ Read the Cartography page for design rules.
Color palettes¶
Open the Color scheme dropdown — it's powered by ColorBrewer + Esri palettes.
- Sequential for quantity (light→dark)
- Diverging for ±values (red→white→blue)
- Categorical for categories (Set1, Set2)
Tick Show all to see them all. Tick Color blind safe to filter accessible options.
Avoid
Rainbow / spectrum / "Hot Iron" palettes for quantitative data — they distort perception.
Symbol galleries¶
For points especially, the Symbol Gallery has hundreds of pre-made markers (transportation, emergency, retail). Open the symbol → Gallery tab.
Levels of symbology¶
For complex maps (e.g., overpass road networks), use Symbol Levels to control which symbol draws on top of which. Symbology pane → … → Switch to symbol levels view.
Pyramid: a clean starter symbology¶
For a polygon layer:
- Outline:
0.5 pt, color = darker version of fill. - Fill: a light, sequential ramp.
- 4–5 classes max.
- Make sure the legend labels are human readable (not raw numbers).
For a point layer:
- Marker: 6–8 pt, white outline 0.5 pt, distinct fill.
- No drop shadow.
- Visible at multiple zoom levels.
For a line layer:
- Major roads: 1.0 pt, primary color.
- Minor roads: 0.5 pt, neutral.
- No double-line outlines unless you really need them.
Practice¶
Choropleth
- Add a counties layer with a
MEDIAN_INCOMEfield. - Open Symbology → Graduated Colors.
- Field =
MEDIAN_INCOME, classes = 5, method = Natural Breaks. - Color scheme = sequential blue.
- Round legend labels to thousands (
$50K, $75K…). - Set transparency to 10% so the basemap shows through.
→ Next: Labeling.