Search code examples
c#uwpteechart

TeeChart - What's the name of this part and how to remove it


I'm learning how to use TeeChart and there is this part that always bothering me. I am not that familiar with chart so I don't know what's the name of it. My question is how to remove it?

enter image description here


Solution

  • I have checked the Steema documentation (here) and found that you can use the TChart.Legend property to control this area of the chart. From the API, it seems this should work:

    chart.Legend.Visible = false;