Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Latest commit

 

History

History
37 lines (31 loc) · 1.24 KB

README.md

File metadata and controls

37 lines (31 loc) · 1.24 KB

Feliz.Plotly Nuget

Fable bindings for plotly.js and react-plotly.js with Feliz style api for use within React applications. This repo continues Shmew's excellent work, forked from here.

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
            ]
        ]
    ]
]