Go : assignment to entry in nil map
The Go Programming Language Specification
Map types
A new, empty map value is made using the built-in function make, which takes the map type and an optional capacity hint as arguments:
make(map[string]int) make(map[string]int, 100)
The initial capacity does not bound its size: maps grow to accommodate the number of items stored in them, with the exception of nil maps. A nil map is equivalent to an empty map except that no elements may be added.
You write:
var countedData map[string][]ChartElement
Instead, to initialize the map, write,
countedData := make(map[string][]ChartElement)
Another option is to use a composite literal:
countedData := map[string][]ChartElement{}
https://golang.org/ref/spec#Composite_literals