I would like to render a circular graphic symbol, but with text inside the circle. For a simple example, I have the following class break example where I would like to set text inside the circle:
ClassBreakInfo {
minimum: 11.9
maximum: 12.1
symbol: SimpleMarkerSymbol {
color: "limegreen"
size: 2
}
}
Is there a way to add text to a SimpleMarkerSymbol. I see there isn't a property for text. Is there a way to composite SimpleMarkerSymbol and TextSymbol that I can bind to 'symbol:' ?
Thanks.