Pentaho

 View Only

 CDE TOOLS Values charts

Thiago Silva's profile image
Thiago Silva posted 07-17-2023 07:53

Hello everybody.

In the charts panel of cde tools when I click on visible values in any chart everything crashes and I need to close the browser.

This has been happening for a while, what do I need to do to resolve and change the visible values to true and false?

Marvin Horst's profile image
Marvin Horst

This is probably a browser issue. Try clearing and refreshing your cache for the site. You could also test in a different browser.

Thiago Silva's profile image
Thiago Silva

Hello, I changed the browser, changed the computer and already transferred the base to another server and the problem continues. :(

Marvin Horst's profile image
Marvin Horst

This is really odd. You could turn on the developer tools in the browser (Ctrl -Shift - I) and possibly  see what is causing the error/crash in the console. When I click on a property field the console shows that code in the scripts.js file is executing. Is this from a windows client PC? Seems like the problem is in the client somewhere and not on the server, because editing a property doesn't send anything to the server.

You could work around this by using the Pre Execution function.

function f() {
    this.chartDefinition.valuesVisible = true;  
} 

I usually do all my chart settings in the pre execution function. It's easier to see what settings were overridden from the default settings.