How do I add the Euro symbol to a GAUSS graph?

I would like to add the Euro symbol to the axis label of a graph I have created in GAUSS. How can I add it?

1 Answer



0



All of the text fields in the GAUSS graphics can display HTML. In HTML, you can create a Euro symbol with € .  To instruct GAUSS to interpret these as HTML and not as literal text, you need to surround the symbol with an HTML tag such as the span or div tags. For example:

   label = "GDP (<div>&euro;</div>)";
   plotSetYLabel(&myPlot, label);

Here is a link to a fairly complete list of symbols and how to create them in HTML.

aptech

1,773

Your Answer

1 Answer

0

All of the text fields in the GAUSS graphics can display HTML. In HTML, you can create a Euro symbol with &euro; .  To instruct GAUSS to interpret these as HTML and not as literal text, you need to surround the symbol with an HTML tag such as the span or div tags. For example:

   label = "GDP (<div>&euro;</div>)";
   plotSetYLabel(&myPlot, label);

Here is a link to a fairly complete list of symbols and how to create them in HTML.


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