scatterchartdemo.xhtml
来自「OperaMasks是一种基于J2EE的Web开发技术」· XHTML 代码 · 共 15 行
XHTML
15 行
<?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:scatterChart title="Scatter Chart Demo" showLegend="true" plotColor="#{ChartBean.gray}">
<g:xyDataSeries value="#{Point2DData}" var="xy">
<g:xyDataItem legend="Sample 1" x="#{xy[0].x}" y="#{xy[0].y}"/>
<g:xyDataItem legend="Sample 2" x="#{xy[1].x}" y="#{xy[1].y}"/>
<g:xyDataItem legend="Sample 3" x="#{xy[2].x}" y="#{xy[2].y}"/>
<g:xyDataItem legend="Sample 4" x="#{xy[3].x}" y="#{xy[3].y}"/>
</g:xyDataSeries>
</g:scatterChart>
</f:view>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?