It would be really nice to be able to adjust dashlet chart color schemes as an administrator without having to go to a developer to code it. Some of the defualt color scheme's do not have enough variation.
It would be really nice to be able to adjust dashlet chart color schemes as an administrator without having to go to a developer to code it. Some of the defualt color scheme's do not have enough variation.
Hi Leaya, that would definitely be helpful! There is actually an open enhancement request for this feature: bug #46555. If you want to share your desire for the feature, you could contact Support so they can add your request for tracking purposes. Then Sugar will have a more accurate understanding of how many people are interested.
-Brenda
Good news! This Idea that Brenda Rossetto referenced has been implemented in the most recent Sugar release, Sugar Sell Q3 2024 . Please see the release notes for additional information: https://support.sugarcrm.com/documentation/sugar_versions/14.1/sell/sugar_14.1.0_release_notes/#Reports
I was looking into an issue where some chart colors were the same for multiple dropdown options in a list. I was thinking it may be a customization affecting the issue, but what I found looks to be some new functionality introduced as part of the upgrade to 14.1.
It looks like on that upgrade, a new directory was added to the Extension framework:
./custom/Extension/application/Ext/DropdownsStyle
What I found in that directory is a file for each dropdown list in the format of <dropdown list name>_style.php (e.g. call_status_dom_style.php) which has a color designation for each dropdown entry defined:
<?php // created: 2024-09-27 20:27:37 $app_dropdowns_style['call_status_dom_style']=array ( 'Scheduled' => array ( 'backgroundColor' => '#517bf8', ), 'Held' => array ( 'backgroundColor' => '#00e0e0', ), 'Canceled' => array ( 'backgroundColor' => '#36b0ff', ), );
I confirmed that adding / removing entries from a dropdown list modifies the respective file. While it isn't UI-accessible, it does at least provide a safer way to modify chart colors where you are grouping by dropdown lists.
Rafael Fernandes - are there plans to add information about this to the Extension framework documentation in the developer guide?
Chris
Hi Chris Raffle ,
you are absolutely right, I'm trying to understand why that feature wasn't documented, but if it is supposed to be, I'll make sure to add that to our guides..
thanks for digging..
rafa
Hi Chris Raffle ,
you are absolutely right, I'm trying to understand why that feature wasn't documented, but if it is supposed to be, I'll make sure to add that to our guides..
thanks for digging..
rafa