📄 xycompositechartdemo.xhtml
字号:
<?xml version="1.0" encoding="UTF-8"?>
<f:view xmlns:f="http://java.sun.com/jsf/core"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:g="http://www.apusic.com/jsf/graph">
<g:compositeChart title="XY Composite Chart Demo" showLegend="true">
<g:barChart yAxisLabel="Value 1">
<g:xyDataSeries value="#{XYData}" var="xy">
<g:xyDataItem legend="Random 1" x="#{xy[0].x}" y="#{xy[0].y}"/>
</g:xyDataSeries>
</g:barChart>
<g:lineChart yAxisLabel="Value 2">
<g:xyDataSeries value="#{XYData}" var="xy">
<g:xyDataItem legend="Random 2" x="#{xy[1].x}" y="#{xy[1].y*2}"/>
</g:xyDataSeries>
</g:lineChart>
<g:lineChart yAxisLabel="Value 3">
<g:xyDataSeries value="#{XYData}" var="xy">
<g:xyDataItem legend="Random 3" x="#{xy[2].x}" y="#{xy[2].y*5}"/>
</g:xyDataSeries>
</g:lineChart>
</g:compositeChart>
</f:view>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -