This setting is applied to the server not a organisation setting. So you cannot change this setting for CRM Online but you can change this for an on-premise installation.
There are two ways to do it.
- Using Deployment Web Service (http://myservername/xrmdeployment/2011/deployment.svc)
- Using Window Power Shell
- Open the Windows Power Shell
- Add the Microsoft Dynamics CRM PowerShell snap-in using
Add-PSSnapin Microsoft.Crm.PowerShell
you may get the message saying something like “Add-PSSnapin : Cannot add Windows PowerShell snap-in Microsoft.Crm.PowerShell because it is already added.” It is okay.
- Run the following 3 command
$setting = Get-CrmSetting -SettingType DashboardSettingsHere is my screen shot with 7 charts.
$setting.MaximumControlsLimit = 7 (// you can change this number)
Set-CrmSetting -Setting $setting