Skip to content

Shmew/Feliz.Plotly

Folders and files

NameName
Last commit message
Last commit date

Latest commit

4b368ed · Jun 17, 2021
Oct 29, 2019
Aug 3, 2020
Oct 20, 2020
Jun 17, 2021
Jun 17, 2021
Jun 8, 2021
Oct 13, 2019
Oct 13, 2019
Aug 29, 2020
Oct 14, 2019
Oct 14, 2019
Sep 21, 2020
Oct 13, 2019
Oct 14, 2019
May 8, 2020
Jun 17, 2021
Aug 3, 2020
Oct 20, 2020
Aug 3, 2020
Nov 18, 2020
Jun 17, 2021
Jun 8, 2021
Jun 8, 2021
Oct 14, 2019
Nov 9, 2019
Jun 6, 2020
Dec 21, 2020

Repository files navigation

Feliz.Plotly Nuget

Fable bindings for plotly.js and react-plotly.js with Feliz style api for use within React applications.

Lets you build visualizations in an easy, discoverable, and safe fashion.

See the full documentation with live examples here.

A quick look:

open Feliz
open Feliz.Plotly

Plotly.plot [
    plot.traces [
        traces.scatter [
            scatter.x [ 1; 2; 3; 4 ]
            scatter.y [ 10; 15; 13; 17 ]
            scatter.mode.markers
        ]
        traces.scatter [
            scatter.x [ 2; 3; 4; 5 ]
            scatter.y [ 16; 5; 11; 9 ]
            scatter.mode.lines
        ]
        traces.scatter [
            scatter.x [ 1; 2; 3; 4 ]
            scatter.y [ 12; 9; 15; 12 ]
            scatter.mode [
                scatter.mode.lines
                scatter.mode.markers
            ]
        ]
    ]
]