{description}
{excerpt}Returns a [Charts|Charts] collection containing all the charts contained as objects within this worksheet. Use this collection to add, access, and remove charts from the worksheet.{excerpt}
{signature:C#}
 public Charts Charts{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property Charts() As Charts
{signature}
{example}{code:csharp|title=C#}
Charts allCharts = ws.Charts;{code}
{code:vbnet|title=vb.net}
Dim allCharts As Charts = ws.Charts{code}

{example}