Census tracts styled with a class breaks renderer displaying the level of high school education
What is a class breaks style?
The class breaks style allows you to visualize numeric ranges of data. It involves defining meaningful ranges of numbers into two or more classes, representing each class with a unique symbol. You can use this style to answer questions beginning with how much?
While a class break's symbol is distinct from another class break's symbol, symbols are typically similar to one another in all
aspects with the exception of one property, such as color.
Class breaks are a good choice to use with percents, rates, ratios and other normalized data because the area or length or size of the feature is irrelevant. By coloring all the features based on their membership in a range of values, it allows direct visual comparison of the features. This works best when the features’ area or length or size does not vary too much.
How a class breaks style works
This style is configured with a class breaks renderer. This renderer requires the following:
A reference to a data value either from a field name, or an Arcade expression.
A list of class break info objects that match a unique symbol with a range of expected values returned from the field or expression.
For visualizations with light basemaps or backgrounds, classes representing smaller numbers are typically represented with light colors and classes representing larger numbers are represented with dark colors.
There are several classification methods that can be employed in the creation of this renderer, but defining class breaks in code typically involves manual classification.
Classified visualizations are ideal for maps where predefined breaks hold meaning to the end user. The range for each class and the number of classes should be deliberate choices made after careful consideration.
Examples
Normalize by attribute
This example demonstrates how to visualize ranges of numeric data values normalized by another data attribute. In the vast majority of cases, you should not normalize total counts with polygon data. These values should be normalized by a base value or the area of the polygon.
This app visualizes the percentage of people age 25 and older that did not attend any high school classes.
Create a class breaks renderer.
Reference a numeric field name containing the total number of people that did not complete high school.
Reference a normalizationField, in this case, the total number of people age 25 and older. The value of field will be divided by the value of normalizationField.
Create four class break info objects and assign a symbol to each range of values.
You can optionally add a default symbol to represent all values that don't fall within one of the breaks.
This example demonstrates how to visualize ranges of values normalized by the area of each polygon. This app visualizes the number of households per square mile. This value is calculated client-side using an Arcade expression.
Create a class breaks renderer.
Write the Arcade expression normalizing by the feature's area and reference it in the valueExpression property of the renderer.
Create four class break info objects and assign a symbol to each range of values.
You can optionally add a default symbol to represent all values that don't fall within one of the breaks.
This example visualizes earthquakes on a globe based on their magnitude. The goal of this map is to show the major earthquakes that cause severe damage,
the moderate ones that cause damage only to buildings which are not earthquake proof, and small earthquakes that don't cause any serious damage. A class breaks renderer with three classes based on the magnitude ranges is the most suitable to see these types of earthquakes at a glance.
Steps
Create three classes for high magnitude earthquakes (greater than 7), moderate magnitude (greater than 5 and less than 7) and small magnitude (less than 5).
Assign an intuitive symbol to each of the classes.