An open API service indexing awesome lists of open source software.

https://github.com/eniompw/plotly

Simple JS Bar Chart with Plotly.js
https://github.com/eniompw/plotly

Last synced: 3 months ago
JSON representation

Simple JS Bar Chart with Plotly.js

Awesome Lists containing this project

README

          

# Plotly

## Simple JS Bar Chart with Plotly.js

![image](https://github.com/user-attachments/assets/22ee957f-8195-4d42-a9cc-5b414365f974)

``` HTML

const data = [{
x:["Italy", "France", "Spain", "USA", "Argentina"],
y:[55, 49, 44, 24, 15],
type:"bar",
marker: {color:"blue"}
}];

const layout = {title:"World Wide Wine Production"};
Plotly.newPlot("myPlot", data, layout);

```

* [W3 Plotly](https://www.w3schools.com/js/js_graphics_plotly.asp)
* [W3 Plotly HTML](https://www.w3schools.com/js/tryit.asp?filename=tryplotly_bars)