AnyChart widget : How to configure the labels of chart

0
While using Anychart, for creating column chart, where to give the labels of X-Axis and Y-Axis ?
asked
1 answers
2

Got the solution for this. 

For anychart, layout options should have value like following:

{
"xaxis": {
    "title": {
     "text" :"X_Axis_Label"
     }

},
 "yaxis":{
"title": {
     "text" :"X_Axis_Label"
     }
    }
}

answered