1

When I apply color on TeeChart other than a named or known color it is shown as transparent. This applies to axis, series, labels, and gridlines.

CyChartControl.Header.Font.Color = Color.FromArgb(((System.Byte)(A)),((System.Byte)(R)),((System.Byte) (G)), ((System.Byte)(B)));

Does anyone know why this happens?

palacsint
  • 28,416
  • 10
  • 82
  • 109
Abhijit Shelar
  • 1,055
  • 7
  • 21
  • 41

1 Answers1

2

This works fine for me here:

tChart1.Header.Font.Color = Color.FromArgb(200, 200, 50, 150);

What TeeChart .NET version are you using? It would be helpful if you could send us a simple example project we can run as-is to reproduce the problem here. You can send your files to "info at steema dot com"

Yeray
  • 5,009
  • 1
  • 13
  • 25