Reference > Methods > SetContourTagFont Method SharpPlot.SetContourTagFont Method
Set the font used to write contour-line tags given any of fontname, point-size, style, color.
Example
sp.SetContourTagFont("Arial",9); // Default color, but a little largersp.SetContourTagFont("Arial",6,FontStyle.Bold,Color.White); // Small and bold for altitude-shaded charts
Overloads
- public void SetContourTagFont(string fontName);
- public void SetContourTagFont(double fontSize);
- public void SetContourTagFont(Color fontColor);
- public void SetContourTagFont(FontStyle fontStyle);
- public void SetContourTagFont(string fontName,double fontSize);
- public void SetContourTagFont(string fontName,Color fontColor);
- public void SetContourTagFont(double fontSize,Color fontColor);
- public void SetContourTagFont(string fontName,FontStyle fontStyle);
- public void SetContourTagFont(FontStyle fontStyle,Color fontColor);
- public void SetContourTagFont(string fontName,double fontSize,Color fontColor);
- public void SetContourTagFont(string fontName,FontStyle fontStyle,Color fontColor);
- public void SetContourTagFont(string fontName,double fontSize,FontStyle fontStyle);
- public void SetContourTagFont(string fontName,double fontSize,FontStyle fontStyle,Color fontColor);
Send comments on this topic © Dyalog Ltd 2013
|