function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
haripriya.maturiharipriya.maturi 

Is there any way to translate Chart's Header / Title

Iam unable to use Custom Label , {!$ObjectType.Object__c.LabelPlural} in chart header / title from dashboard edit layout. 

 

Please suggest me to achive this.

 

Thanks and Regards,

Haripriya

Vinita_SFDCVinita_SFDC

Hello Haripriya,

 

It seems a custom field, try using only '!' like:

 

{!ObjectType.Object__c.LabelPlural}

 

Call the label using either an Apex class or a Visualforce page. Custom labels are called in ApexusingSystem.Label.Label_name. For Visualforce, use the $Label global variable.

 

Also if an Apex class or Visualforce page references a custom label, and that label has translations, you must explicitly package the individual languages desired in order for those translations to be included in the package.

 

Refer:https://help.salesforce.com/HTViewHelpDoc?id=cl_about.htm&language=en_US