Sign in to follow this  
mole1066

xml builder and Styles

Recommended Posts

I am trying to style my charts and am having issues getting the xml databuilder to change the chart. I have added the following simple example. Although it seems to build correctly i do not see any changes in the chart. Any clues?

 

 

xml = Builder::XmlMarkup.new

 

xml.chart(:caption=>'Problems by category', :numberPrefix=>'

Edited by Guest

Share this post


Link to post
Share on other sites

Hi Michael

1. There is a typo in <definition>, xml.defintion() should be xml.definition()

2. You have not applied the Font to the right object.

Please see http://www.fusioncharts.com/Docs/Contents/Styles/HowToUse.html, scroll down and see a table for each Object what are the Features Supported.

The Canvas object does not support the Font style.

What is it that you want to achieve? If you want to set the Font color for all text in the canvas, you can use the chart attribute baseFontColor. This attribute sets the base font color of the chart i.e., all the values and the names in the chart which lie on the canvas will be displayed using this font color.

If you want to try styles, then apply this style to Caption and see.

Hope this helps.

Srividya

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