-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy path2015-08-19-plotly_js-reference.html
63 lines (54 loc) · 3.31 KB
/
2015-08-19-plotly_js-reference.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
---
permalink: /javascript/reference/
layout: langindex
page_type: reference
language: plotly_js
name: Single-Page Reference
description: Figure attribute reference for Plotly's JavaScript open-source graphing library.
redirect_from: /javascript-graphing-library/reference/
---
<h2>JavaScript Figure Reference: Single-Page</h2>
<details>
<summary>How are Plotly attributes organized?</summary>
<div class="row">
<p>
<code>plotly.js</code> charts are described declaratively as JSON objects. Every aspect of a plotly chart (the colors, the grids, the data, and so on) has a corresponding JSON attribute. This page contains an extensive list of these attributes.<br><br>
Plotly's graph description places attributes into two categories: traces (objects that describe a single series of data in a graph) and layout (attributes that apply to the rest of the chart, like the <code>title</code>, <code>xaxis</code>, or <code>annotations</code>). Traces are categorized by chart type (e.g. <code>scatter</code>, <code>heatmap</code>).<br><br>
Here is a simple example of a plotly chart inlined with links to each attribute's reference section.
<pre>
data = [
{
type: 'scatter', // all "scatter" attributes: <a href="../#scatter">#scatter</a>
x: [1, 2, 3], // more about "x": <a href="../#scatter-x">#scatter-x</a>
y: [3, 1, 6], // <a href="../#scatter-y">#scatter-y</a>
marker: { // marker is an object, valid marker keys: <a href="../#scatter-marker">#scatter-marker</a>
color: 'rgb(16, 32, 77)' // more about "marker.color": <a href="../#scatter-marker-color">#scatter-marker-color</a>
}
},
{
type: 'bar', // all "bar" chart attributes: <a href="../#bar">#bar</a>
x: [1, 2, 3], // more about "x": <a href="../#bar-x">#bar-x</a>
y: [3, 1, 6], // <a href="../#bar-y">#bar-y</a>
name: 'bar chart example' // <a href="../#bar-name">#bar-name</a>
}
];
layout = { // all "layout" attributes: <a href="../#layout">#layout</a>
title: 'simple example', // more about "layout.title": <a href="../#layout-title">#layout-title</a>
xaxis: { // all "layout.xaxis" attributes: <a href="../#layout-xaxis">#layout-xaxis</a>
title: 'time' // more about "layout.xaxis.title": <a href="../#layout-xaxis-title">#layout-xaxis-title</a>
},
annotations: [ // all "annotation" attributes: <a href="../#layout-annotations">#layout-annotations</a>
{
text: 'simple annotation', // <a href="../#layout-annotations-text">#layout-annotations-text</a>
x: 0, // <a href="../#layout-annotations-x">#layout-annotations-x</a>
xref: 'paper', // <a href="../#layout-annotations-xref">#layout-annotations-xref</a>
y: 0, // <a href="../#layout-annotations-y">#layout-annotations-y</a>
yref: 'paper' // <a href="../#layout-annotations-yref">#layout-annotations-yref</a>
}
]
}</pre>
</p>
<hr>
</div>
</details>
{% include posts/plotschema-reference.html %}