Crates
/
fission-charts
fission-charts
v0.10.0
Native chart widgets and data visualization primitives for Fission applications
Install
cargo add fission-charts
Copy
Platform support
Declared by the crate author and captured when this directory was generated.
Android
Supported
iOS
Supported
Linux
Supported
macOS
Supported
Windows
Supported
Web
Supported
Terminal
Not declared
Static site
Supported
Server-rendered
Supported
Package metadata
crates.io
View package
Documentation
Open link
Repository
Open link
License
MIT
Latest version
0.10.0
Downloads
307
Last updated
2026-08-02T15:33:03.135731Z
Categories
gui
rendering
visualization
Keywords
charts
data-visualization
fission
gpu-accelerated
ui-framework
Published versions
0.10.0
0.9.2
0.9.1
0.9.0
0.8.0
0.7.0
0.6.3
0.6.2
0.6.1
0.6.0
0.5.1
0.5.0
Dependencies
Dependency metadata is not indexed yet.
README

fission-charts

Chart widgets and data-visualization primitives for Fission applications.
fission-charts provides the chart families used by dashboards, reporting screens, and the checked-in chart gallery. It is designed to be used through the public fission facade with the charts feature enabled:
[dependencies]
fission = { version = "0.10.0", features = ["desktop", "charts"] }

Most application code should import from fission::prelude::* and fission::charts::* rather than depending on this crate directly. Depend on fission-charts only when you are extending the chart layer itself.

What it contains

Cartesian charts such as line, area, bar, scatter, candlestick, boxplot, heatmap, calendar, and statistical variants.
Relationship and hierarchy charts such as graph, tree, treemap, sunburst, sankey, funnel, and parallel coordinates.
Spatial and specialized charts such as map, globe, gauge, radar, polar, pie, pictorial bar, theme river, and custom visualizations.
Shared data-set, series, axis, legend, tooltip, interaction, and animation configuration used by the chart gallery.

Example

use fission::prelude::*;
use fission::charts::*;

struct Dashboard;

impl From<Dashboard> for Widget {
    fn from(component: Dashboard) -> Self {
        LineChart::new()
            .title("Revenue")
            .series(LineSeries::new("Actual", vec![120.0, 156.0, 182.0]))
            .into()
    }
}

Documentation

The chart guide, gallery, and chart reference live at fission.rs. The gallery screenshots are generated from Fission charts, not copied from another charting package.

License

MIT
README

fission-charts

Chart widgets and data-visualization primitives for Fission applications.
fission-charts provides the chart families used by dashboards, reporting screens, and the checked-in chart gallery. It is designed to be used through the public fission facade with the charts feature enabled:
[dependencies]
fission = { version = "0.10.0", features = ["desktop", "charts"] }

Most application code should import from fission::prelude::* and fission::charts::* rather than depending on this crate directly. Depend on fission-charts only when you are extending the chart layer itself.

What it contains

Cartesian charts such as line, area, bar, scatter, candlestick, boxplot, heatmap, calendar, and statistical variants.
Relationship and hierarchy charts such as graph, tree, treemap, sunburst, sankey, funnel, and parallel coordinates.
Spatial and specialized charts such as map, globe, gauge, radar, polar, pie, pictorial bar, theme river, and custom visualizations.
Shared data-set, series, axis, legend, tooltip, interaction, and animation configuration used by the chart gallery.

Example

use fission::prelude::*;
use fission::charts::*;

struct Dashboard;

impl From<Dashboard> for Widget {
    fn from(component: Dashboard) -> Self {
        LineChart::new()
            .title("Revenue")
            .series(LineSeries::new("Actual", vec![120.0, 156.0, 182.0]))
            .into()
    }
}

Documentation

The chart guide, gallery, and chart reference live at fission.rs. The gallery screenshots are generated from Fission charts, not copied from another charting package.

License

MIT
Package metadata
crates.io
View package
Documentation
Open link
Repository
Open link
License
MIT
Latest version
0.10.0
Downloads
307
Last updated
2026-08-02T15:33:03.135731Z
Categories
gui
rendering
visualization
Keywords
charts
data-visualization
fission
gpu-accelerated
ui-framework
Published versions
0.10.0
0.9.2
0.9.1
0.9.0
0.8.0
0.7.0
0.6.3
0.6.2
0.6.1
0.6.0
0.5.1
0.5.0
Dependencies
Dependency metadata is not indexed yet.