Yew Charting Library
yew-chart is a collection of components that can be assembled to form charts
for the Yew framework.
Here is a soil moisture/rainfall chart that has been produced using this library:
Here's another chart produced by this library, representing what is known as "Delta-T":
By leveraging these SVG-based components many types of charts can be formed with a great deal of flexibility. The library is intended as a toolkit that provides conveniences for rendering chart primitives. These primitives can be regarded at a similar level as SVG's primitives i.e. lines, polygons etc.
Example Plots
Two basic projects are given in the examples folder.
Line Chart
examples/basic is configured to output a basic line chart:
...and here's the entire Yew component that was used to generate it:
const WIDTH: f32 = 533.0;
const HEIGHT: f32 = 300.0;
const MARGIN: f32 = 50.0;
const TICK_LENGTH: f32 = 10.0;
If passing
SeriesDataaround viaProps, you'll need to provide aPartialEqimplementation. Rust won't be able to derive one automatically for you asSeriesDataholds a closure that cannot be compared. This doesn't end up being a problem though as should be performing an explicit pointer comparison when comparingRcbased values anyway;Rccontained references are immutable.Rc::ptr_eqis your friend in this scenario.That all said, you probably won't be passing
SeriesDataaround via props, but some otherRcof a model oriented data type which is to be mapped to it. Usingptr_eqis still the way to go there though as you'll get performance benefits.
Bar Chart
Using the same Yew view method code as above, series_type within the Series tag can be edited to display a bar chart instead by using the Bar keys.
<Series series_type= ... />
The bar chart can also be made to 'drop' instead of 'rise' with the enum variant BarType. This is particularly helpful if using negative axis values, where the bars are dropping from y = 0 or similar.
When the BarType is set to Drop, the same data from above produces the following graph.
As seen, the bars are set to go from the selected side to the datapoint. Since the axis range is from 0.0 to 5.0, and the first point is at (26-Mar, 1.0), the bar drops from 5.0 to 1.0.
<Series series_type= ... />
One final example of this is in using a negative scale and negative values. In the following graph, the axis ranges from -5.0 to 0.0, and the first point is (01-Apr, -1.0).
Scatter Plot
examples/scatter is configured to output a basic scatter plot. The method by which this is accomplished is slightly different to that of the Line and Bar charts.
Contribution policy
Contributions via GitHub pull requests are gladly accepted from their original author. Along with any pull requests, please state that the contribution is your original work and that you license the work to the project under the project's open source license. Whether or not you state this explicitly, by submitting any copyrighted material via pull request, email, or other means you agree to license the material under the project's open source license and warrant that you have the legal authority to do so.
License
This code is open source software licensed under the Apache-2.0 license.
© Copyright Titan Class P/L, 2021