Skip to content

Commit 38c23d2

Browse files
findleyrgopherbot
authored andcommitted
internal/content/telemetrygodev: s/Count/Reports to clarify y axis
Partition charts plot the number of reports, not total counts contained within those reports. Clarify this in the y axis label. Change-Id: Id3036d0dcb1131d72bcc2f57fcaeeab973dfc474 Reviewed-on: https://go-review.googlesource.com/c/telemetry/+/603856 Reviewed-by: Alan Donovan <[email protected]> Auto-Submit: Robert Findley <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
1 parent fbac2f2 commit 38c23d2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

internal/content/telemetrygodev/charts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ function partition({ Data, Name }: Chart) {
8181
domain: Data.map((d) => d.Key),
8282
},
8383
y: {
84-
label: "Count",
84+
label: "Reports", // currently, partition charts count the number of reports, not counter totals.
8585
domain: [0, max + 1], // adjust domain to prevent rendering issues, especially with all-zero data.
8686
},
8787
width: 1024,

0 commit comments

Comments
 (0)