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";
}
```
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";
}