⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stacked_data.builder

📁 FusionCharts 是一个免费的图形显示组件
💻 BUILDER
字号:
#Creates xml with values for sales data of product A and product B 
#in each quarter.
#The values required for building the xml is obtained as parameter arr_data
#It expects an array in which each element is 
#itself an array with first element as label, second element as sales of product A
#and third element as sales of product B
xml = Builder::XmlMarkup.new
xml.graph(:caption=>'Sales', :numberPrefix=>'$', :formatNumberScale=>'0',:decimalPrecision=>'0') do
  # Run a loop to create the <category> tags within <categories>
  xml.categories do
		for item in arr_data
			xml.category(:name=>item[0])
		end
 end
 # Run a loop to create the <set> tags within dataset for series 'Product A'
  xml.dataset(:seriesName=>'Product A',:color=>'AFD8F8') do
		for item in arr_data
			xml.set(:value=>item[1])
		end
  end
  # Run a loop to create the <set> tags within dataset for series 'Product B'
  xml.dataset(:seriesName=>'Product B',:color=>'F6BD0F') do
		for item in arr_data
			xml.set(:value=>item[2])
		end
  end
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -