how to input delta Δ or other Greek into Y label?

tried below, doesn't give me what i want,-- ΔcovEC

plotSetYLabel(&myPlot, "\204\68\201covEC", "Century New", 20, "black");

3 Answers



0



plotSetYLabel uses html to create math symbols, greek letters, etc. To create this: ΔcovEC, you would enter this line:

plotSetYLabel(&myPlot, "<html>&Delta;covEC</html>");

Notice that the entire string is wrapped in HTML tags to get GAUSS to recognize that you intend for the string to be interpreted as HTML. It looks like the 'covEC' is italic in your example. To accomplish this, you can wrap the 'covEC' in the HTML italic tags like this:

plotSetYLabel(&myPlot, "<html>&Delta;<i>covEC</i></html>");

aptech

1,773


0



Here is a link to a website that lists Greek letters and math symbols in HTML.

aptech

1,773


0



Thanks

Your Answer

3 Answers

0

plotSetYLabel uses html to create math symbols, greek letters, etc. To create this: ΔcovEC, you would enter this line:

plotSetYLabel(&myPlot, "<html>&Delta;covEC</html>");

Notice that the entire string is wrapped in HTML tags to get GAUSS to recognize that you intend for the string to be interpreted as HTML. It looks like the 'covEC' is italic in your example. To accomplish this, you can wrap the 'covEC' in the HTML italic tags like this:

plotSetYLabel(&myPlot, "<html>&Delta;<i>covEC</i></html>");
0

Here is a link to a website that lists Greek letters and math symbols in HTML.

0

Thanks


You must login to post answers.

Have a Specific Question?

Get a real answer from a real person

Need Support?

Get help from our friendly experts.

Try GAUSS for 14 days for FREE

See what GAUSS can do for your data

© Aptech Systems, Inc. All rights reserved.

Privacy Policy