Dynamic Axis Label in Line Chart

0
Is it possible to have a dynamic label for axes of the line chart? I only see a static text field in chart properties where we can specify labels for X-axis and Y-axis Another way is to set labels from plotly configuration json but that is also static I want to provide label text from attribute of an entity. Is there any way to achieve it?
asked
1 answers
0

You can specify this dynamically in the layout json, but if this is not possible in the line chart widget, the only way to do this is by using the anychart widget

Layout example:

"xaxis": {
    "title": "AXIS Title"
} 

 

answered