[Zedgraph] Textobjekt (Label) einfügen

TextObj text = new TextObj("Zeile1\nZeile2\nZeile3", 0.2F, 0.5F, CoordType.PaneFraction);

text.Location.AlignH = AlignH.Center;
text.Location.AlignV = AlignV.Center;
text.FontSpec.Border.IsVisible = false; // ohne Rahmen
text.FontSpec.Fill = new Fill(Color.White, Color.Blue, 45F);
text.FontSpec.StringAlignment = StringAlignment.Center;

zedGraph.GraphPane.GraphObjList.Add(text);