sizeLegends.title

Sets the legend title within a size-key legend on charts that have multiple size legends.

Type

String

Examples

Chart1.sizeLegends['Sum(Product:Quantity Purchased)'].title = 'Salesperson Size';
Chart1.sizeLegends['Sum(Product:Total)'].title = 'Year Size';

sizeLegendsTitle

Either syntax below can be used in component script:

sizeLegends['...'].title           // unqualified
Chart1.sizeLegends['...'].title    // qualified

For onInit/onRefresh scripts, and for component and property scripts on other components, the second (qualified) form is required.