<chart>
...
<annotations>
<annotationGroup id='GRP1' >
<annotation type='rectangle' color='639ACE' x='100' y='100' toX='200' toY='200'/>
</annotationGroup>
</annotations>
<styles>
<definition>
<style name='myShadow' type='shadow' distance='10' />
</definition>
<application>
<apply toObject='GRP1' styles='myShadow'/>
</application>
</styles>
...
</chart>
{
"chart": {},
...
"annotations": {
"groups": [
{
"id": "GRP1",
"items": [
{
"type": "rectangle",
"color": "639ACE",
"x": "100",
"y": "100",
"tox": "200",
"toy": "200"
}
]
}
]
},
"styles": {
"definition": [
{
"name": "myShadow",
"type": "shadow",
"distance": "10"
}
],
"application": [
{
"toobject": "GRP1",
"styles": "myShadow"
}
]
...
}
}