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>€</div>)"; plotSetYLabel(&myPlot, label);
Here is a link to a fairly complete list of symbols and how to create them in HTML.
Your Answer
1 Answer
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>€</div>)"; plotSetYLabel(&myPlot, label);
Here is a link to a fairly complete list of symbols and how to create them in HTML.