📜 ⬆️ ⬇️

New product from Exadel - Fiji

I want to introduce you to a new product created by the developers of the Exadel company, which is well known in the JAVA / JSF developers circle with its open source project RichFaces. In contrast to the RichFaces Fiji project is commercial.
So, Fiji is a framework and a set of components. The main goal of the project is the integration of Flex and JSF.

In addition to the 5 charts, Fiji has another universal component for connecting external Flash modules, which also allows you to transfer data to the connected modules via the JSF <f: param> tag.
In order to put any of the library components on the page, you need to add the required set of libraries, register
<%@ taglib uri="http://exadel.com/fiji" prefix="fiji"%>

and put the component itself,

<fiji:barChart id="barChartOne" value="#{oneSeriesBar.data}"
title="One-series Bar Chart" width="500" height="300">
<fiji:chartData type="name" value="Series 15" />
</fiji:barChart>


passing in value data from the bean.
As a result, a chart with your data will be displayed.


Useful links:
')
Demo site - livedemo.exadel.com/fiji-demo
Documentation - www.exadel.com/fiji/guide

Source: https://habr.com/ru/post/39367/


All Articles