Is it possible to override the title and description of a chart widget dynamically?
something like
```
protected function getHeading()
{
//I can do things here to create a dynamic description if necessary
return "My Custom Heading"; } protected function getDescription() { //I can do things here to create a dynamic description if necessary
return "My Custom Description"; }
return "My Custom Heading"; } protected function getDescription() { //I can do things here to create a dynamic description if necessary
return "My Custom Description"; }
1 Reply
I found that you can do exactly this already.