{description}
{excerpt}Sets or returns whether to stretch cell references in charts.{excerpt}
{signature:C#}
 public boolean StretchCellReferencesInCharts{ get; set; }
{signature}{signature:vb.net}
Public Property StretchCellReferencesInCharts() As Boolean
{signature}
{example}{code:csharp|title=C#}

          //--- Get StretchCellReferencesInCharts
          boolean stretchCellRef = XlwTemplate.StretchCellReferencesInCharts;

          //--- Set StretchCellReferencesInCharts to true
          XlwTemplate.StretchCellReferencesInCharts = true;
        {code}
{code:vb.net|title=vb.net}

          '--- Get StretchCellReferencesInCharts
          Dim stretchCellRef As Boolean = XlwTemplate.StretchCellReferencesInCharts

          '--- Set StretchCellReferencesInCharts to true
          XlwTemplate.StretchCellReferencesInCharts = True
        {code}

{example}