You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the current release of emoncms, when you hover over graph feeds with long labels (>20), they get truncated with ellipses append.
The solution that I have applied to my local installation is to simply comment out the following code from function
"Emoncms/widget/graph.js/graph_init_editor()"
...
if (name && name.length>20) {
name = name.substr(0,20)+"..";
...
I've not observed any negative side effects from doing this. Just remember to delete the browser cache (or use Cognito/Private) for the change to take effect.
Viv Lloyd
The text was updated successfully, but these errors were encountered:
In the current release of emoncms, when you hover over graph feeds with long labels (>20), they get truncated with ellipses append.
The solution that I have applied to my local installation is to simply comment out the following code from function
"Emoncms/widget/graph.js/graph_init_editor()"
...
if (name && name.length>20) {
name = name.substr(0,20)+"..";
...
I've not observed any negative side effects from doing this. Just remember to delete the browser cache (or use Cognito/Private) for the change to take effect.
Viv Lloyd
The text was updated successfully, but these errors were encountered: