Sign in to follow this  
ChrisMcEvoy

Make The Y-Axis Bold

Recommended Posts

Hi,

 

It seems you are looking for the setting the y-axis name as bold.

 

In case yes, please try applying the following style in the XML on the "YAXISNME" object.

Ex:

<styles>
<definition>
<style name='LabelFont' type='font' font='Arial' size='12' bold='1' />
</definition>
<application>
<apply toObject='YAXISNAME' styles='LabelFont' />
</application> 
</styles>

 

 

If you are looking for something else, please let us know with a screenshot.

 

Hope this helps. :)

Share this post


Link to post
Share on other sites

Hi,

 

It seems you are looking for the setting the y-axis name as bold.

 

In case yes, please try applying the following style in the XML on the "YAXISNME" object.

Ex:

<styles>
<definition>
<style name='LabelFont' type='font' font='Arial' size='12' bold='1' />
</definition>
<application>
<apply toObject='YAXISNAME' styles='LabelFont' />
</application> 
</styles>

 

 

If you are looking for something else, please let us know with a screenshot.

 

Hope this helps. :)

 

Hi that is great for the Y-Axis name but what I really need to change are the Axis Scale Values (see the red box in the attachment).

and if possible the numbers above each coloured graph value.

YAxis.rtf

Share this post


Link to post
Share on other sites
Guest Sumedh

Hi,

 

You can apply font style to YAXISVALUES object of the chart.

 

Please refer the following code:

<styles>

       <definition>
        	<style name='MyFirstFontStyle' type='font' font='Verdana' size='12' color='FF0000' bold='1'  />
       </definition>

      <application>
       	<apply toObject='YAXISVALUES' styles='MyFirstFontStyle,MyFirstShadow' />
     </application>

</styles>

 

For more information, please refer the following URL:

http://docs.fusionch...les/Styles.html

 

Hope this helps!

Share this post


Link to post
Share on other sites

Hi,

 

You can apply font style to YAXISVALUES object of the chart.

 

Please refer the following code:

<styles>

       <definition>
            <style name='MyFirstFontStyle' type='font' font='Verdana' size='12' color='FF0000' bold='1'  />
       </definition>

      <application>
           <apply toObject='YAXISVALUES' styles='MyFirstFontStyle,MyFirstShadow' />
     </application>

</styles>

 

For more information, please refer the following URL:

http://docs.fusionch...les/Styles.html

 

Hope this helps!

 

 

Thanks Sumedh, that worked at treat!!! Tried to do the same for the XAXISVALUES but it did not work

 

:(

 

Have attached a sample. I want the font of the column totals to be bigger and bolder too.

Any help appreciated.

XAxis.rtf

Share this post


Link to post
Share on other sites
Guest Sumedh

Hi Chris,

 

As XAXISVALUES object is not supported in Column3D chart.

 

So, applying font style on XAXISVALUES will not affect on the chart.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this