diff --git a/README.md b/README.md
index 010252693..02b012286 100644
--- a/README.md
+++ b/README.md
@@ -1,30 +1,30 @@
-# react-plotly.js-editor
+# react-chart-editor
> Customizable React-based editor panel for Plotly charts, Part of Plotly's [React Component Suite](https://plot.ly/products/react/) for building data visualization Web apps and products.
master
-
+
## Demo & Screenshots
-Check out the [live demo here](https://plotly.github.io/react-plotly.js-editor/).
+Check out the [live demo here](https://plotly.github.io/react-chart-editor/).

## Quick start
-Check out the demo of the latest release of the `DefaultEditor` at https://plotly.github.io/react-plotly.js-editor/ or run it locally with:
+Check out the demo of the latest release of the `DefaultEditor` at https://plotly.github.io/react-chart-editor/ or run it locally with:
```
git clone [this repo]
-cd react-plotly.js-editor
+cd react-chart-editor
cd examples/simple
npm install
npm start
```
See more examples
-[here](https://github.com/plotly/react-plotly.js-editor/tree/master/examples).
+[here](https://github.com/plotly/react-chart-editor/tree/master/examples).
## Overview
@@ -32,10 +32,10 @@ This module's entry point is a React component called `` which c
## Connecting `` to ``
-The binding between `` and `` works a little differently that in most React apps because plotly.js mutates its properties. This is mapped onto React's one-way dataflow model via event handlers and shared revision numbers which trigger re-renders of mutated state. The following subset of the [simple example](https://github.com/plotly/react-plotly.js-editor/tree/master/examples/simple) shows how this works using a parent component to store state, but the principle is the same with a different state-manage approach, as shown in the [redux example](https://github.com/plotly/react-plotly.js-editor/tree/master/examples/redux):
+The binding between `` and `` works a little differently that in most React apps because plotly.js mutates its properties. This is mapped onto React's one-way dataflow model via event handlers and shared revision numbers which trigger re-renders of mutated state. The following subset of the [simple example](https://github.com/plotly/react-chart-editor/tree/master/examples/simple) shows how this works using a parent component to store state, but the principle is the same with a different state-manage approach, as shown in the [redux example](https://github.com/plotly/react-chart-editor/tree/master/examples/redux):
```javascript
-import PlotlyEditor from 'react-plotly.js-editor';
+import PlotlyEditor from 'react-chart-editor';
import Plot from 'react-plotly.js';
class App extends Component {
@@ -76,17 +76,17 @@ class App extends Component {
## Data Management
-`` accepts a `dataSources` property which is an object of arrays of data, as well as a `dataSourceOptions` property which contains metadata about the `dataSources`, such as human-readable labels used to populate input elements like dropdown menus. `` treats these properties as immutable so any changes to them will trigger a rerender, and accepts an `onUpdateTraces` event handler property which is called whenever it needs to access a column from `dataSources`, enabling asynchronous data loading e.g. from remote APIs. The [async-data example](https://github.com/plotly/react-plotly.js-editor/tree/master/examples/async-data) shows how this is done using a dummy asynchronous back-end proxy.
+`` accepts a `dataSources` property which is an object of arrays of data, as well as a `dataSourceOptions` property which contains metadata about the `dataSources`, such as human-readable labels used to populate input elements like dropdown menus. `` treats these properties as immutable so any changes to them will trigger a rerender, and accepts an `onUpdateTraces` event handler property which is called whenever it needs to access a column from `dataSources`, enabling asynchronous data loading e.g. from remote APIs. The [async-data example](https://github.com/plotly/react-chart-editor/tree/master/examples/async-data) shows how this is done using a dummy asynchronous back-end proxy.
## Styling the `` and the built-in components
-* Import editor styles with `import react-plotly.js-editor/lib/react-plotly.js-editor.min.css`
-* Interested in [theming](https://github.com/plotly/react-plotly.js-editor/tree/master/THEMING.md)?
-* Need to support IE11? import the IE css instead: `import react-plotly.js-editor/lib/react-plotly.js-editor.ie.min.css`
+* Import editor styles with `import react-chart-editor/lib/react-chart-editor.min.css`
+* Interested in [theming](https://github.com/plotly/react-chart-editor/tree/master/THEMING.md)?
+* Need to support IE11? import the IE css instead: `import react-chart-editor/lib/react-chart-editor.ie.min.css`
## Development Setup
-This repo contains a [dev app](https://github.com/plotly/react-plotly.js-editor/tree/master/dev) that depends on the components locally and is configured for hot reloading, for easy local development. A `jest`-based test suite is also included.
+This repo contains a [dev app](https://github.com/plotly/react-chart-editor/tree/master/dev) that depends on the components locally and is configured for hot reloading, for easy local development. A `jest`-based test suite is also included.
```
npm install
@@ -109,7 +109,7 @@ At a pseudo-code level it looks like this:
```
-The [custom editor example](https://github.com/plotly/react-plotly.js-editor/tree/master/examples/custom) shows how to build a custom editor, and shows off all of the general-purpose containers and fields listed below.
+The [custom editor example](https://github.com/plotly/react-chart-editor/tree/master/examples/custom) shows how to build a custom editor, and shows off all of the general-purpose containers and fields listed below.
### General-purpose Containers
diff --git a/THEMING.md b/THEMING.md
index fc0d785b7..fafec1193 100644
--- a/THEMING.md
+++ b/THEMING.md
@@ -83,10 +83,10 @@ You can inspect the editor and see a full listing of all variables that you can
CSS custom properties are not supported in IE11. However, you can use a [PostCSS](https://github.com/postcss/postcss) plugin to convert the css properties to their true value when they are used. We are using [PostCSS Custom Properties](https://github.com/postcss/postcss-custom-properties).
The PostCSS plugin we are using only applies to variables that are in the `:root{}` scope. If you'd like to both theme and use your styles to support IE11, you would need to import the unminified IE styles we ship with the editor:
- `import react-plotly.js-editor/lib/react-plotly.js-editor.ie.css` (this stylesheet has the variables attached to the `:root{}` scope).
+ `import react-chart-editor/lib/react-chart-editor.ie.css` (this stylesheet has the variables attached to the `:root{}` scope).
Then, rather than applying your custom properties to `.theme--dark .plotly-editor--theme-provider`, you would apply your overrides to `:root{}`.
Finally, you would pipe in the PostCSS plugin(s) to your project and produce a css file with the properties applied as their true value. It's recommended to use the [PostCSS Remove Root](https://github.com/cbracco/postcss-remove-root) plugin after you have converted all of the properties.
- You can see our PostCSS scripts [here](https://github.com/plotly/react-plotly.js-editor/tree/master/scripts/postcss.js).
+ You can see our PostCSS scripts [here](https://github.com/plotly/react-chart-editor/tree/master/scripts/postcss.js).
diff --git a/circle.yml b/circle.yml
index 71d425269..c238033a8 100644
--- a/circle.yml
+++ b/circle.yml
@@ -5,7 +5,7 @@ jobs:
# specify the version you desire here
- image: circleci/node:8.9
- working_directory: ~/react-plotly.js-editor
+ working_directory: ~/react-chart-editor
steps:
- checkout
diff --git a/dev/App.js b/dev/App.js
index b953829be..23916344b 100644
--- a/dev/App.js
+++ b/dev/App.js
@@ -6,7 +6,7 @@ import PlotlyEditor from '../src';
import '../src/styles/main.scss';
import Nav from './Nav';
-// https://github.com/plotly/react-plotly.js-editor#mapbox-access-tokens
+// https://github.com/plotly/react-chart-editor#mapbox-access-tokens
import ACCESS_TOKENS from '../accessTokens';
const dataSources = {
diff --git a/examples/README.md b/examples/README.md
index 8497bfecb..57bfadad2 100644
--- a/examples/README.md
+++ b/examples/README.md
@@ -1,6 +1,6 @@
-# `react-plotly.js-editor` examples
+# `react-chart-editor` examples
-* [Simple `react-plotly.js-editor` example](simple): `DefaultEditor`, synchronous data, top-level component state management
-* [Async-data `react-plotly.js-editor` example](async-data): `DefaultEditor`, asynchronous data, top-level component state management
-* [Custom `react-plotly.js-editor` example](custom): `CustomEditor`, synchronous data, top-level component state management
-* [Redux `react-plotly.js-editor` example](redux): `DefaultEditor`, synchronous data, Redux state management
+* [Simple `react-chart-editor` example](simple): `DefaultEditor`, synchronous data, top-level component state management
+* [Async-data `react-chart-editor` example](async-data): `DefaultEditor`, asynchronous data, top-level component state management
+* [Custom `react-chart-editor` example](custom): `CustomEditor`, synchronous data, top-level component state management
+* [Redux `react-chart-editor` example](redux): `DefaultEditor`, synchronous data, Redux state management
diff --git a/examples/custom/README.md b/examples/custom/README.md
index 0aa0b38b7..a9b15cb59 100644
--- a/examples/custom/README.md
+++ b/examples/custom/README.md
@@ -1,4 +1,4 @@
-# Custom `react-plotly.js-editor` example
+# Custom `react-chart-editor` example
This example built with [`create-react-app`](https://github.com/facebookincubator/create-react-app) uses a [customized editor](src/CustomEditor.js), with synchronously-loaded data and a top-level component for state, so as to demo the customizability of this component.
diff --git a/examples/custom/package.json b/examples/custom/package.json
index f4b2bd82f..a631a36cb 100644
--- a/examples/custom/package.json
+++ b/examples/custom/package.json
@@ -6,7 +6,7 @@
"plotly.js": "^1.32.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
- "react-plotly.js-editor": "latest",
+ "react-chart-editor": "latest",
"react-plotly.js": "^1.2.0",
"react-scripts": "1.0.17"
},
diff --git a/examples/custom/src/App.js b/examples/custom/src/App.js
index 68b90c514..0d1615e7d 100644
--- a/examples/custom/src/App.js
+++ b/examples/custom/src/App.js
@@ -1,9 +1,9 @@
import React, {Component} from 'react';
import plotly from 'plotly.js/dist/plotly';
import createPlotComponent from 'react-plotly.js/factory';
-import PlotlyEditor from 'react-plotly.js-editor';
+import PlotlyEditor from 'react-chart-editor';
import CustomEditor from './CustomEditor';
-import 'react-plotly.js-editor/lib/react-plotly.js-editor.css';
+import 'react-chart-editor/lib/react-chart-editor.css';
const dataSources = {
col1: [1, 2, 3], // eslint-disable-line no-magic-numbers
diff --git a/examples/custom/src/CustomEditor.js b/examples/custom/src/CustomEditor.js
index da7e54d63..189b6bbcc 100644
--- a/examples/custom/src/CustomEditor.js
+++ b/examples/custom/src/CustomEditor.js
@@ -16,7 +16,7 @@ import {
Button,
SingleSidebarItem,
TraceAccordion,
-} from 'react-plotly.js-editor';
+} from 'react-chart-editor';
export default class CustomEditor extends Component {
render() {
diff --git a/examples/demo/README.md b/examples/demo/README.md
index 7cd1a5749..a209491e9 100644
--- a/examples/demo/README.md
+++ b/examples/demo/README.md
@@ -1,4 +1,4 @@
-# Simple `react-plotly.js-editor` example
+# Simple `react-chart-editor` example
This example built with [`create-react-app`](https://github.com/facebookincubator/create-react-app) uses the `DefaultEditor`, with synchronously-loaded data and a top-level component for state, so as to demo the basic functionality of this component.
diff --git a/examples/demo/package.json b/examples/demo/package.json
index a55cf6cc8..ff81b20cf 100644
--- a/examples/demo/package.json
+++ b/examples/demo/package.json
@@ -6,7 +6,7 @@
"plotly.js": "^1.32.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
- "react-plotly.js-editor": "latest",
+ "react-chart-editor": "latest",
"react-plotly.js": "^1.2.0",
"react-scripts": "1.0.17"
},
@@ -18,7 +18,7 @@
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
- "homepage": "http://plotly.github.io/react-plotly.js-editor",
+ "homepage": "http://plotly.github.io/react-chart-editor",
"devDependencies": {
"gh-pages": "^1.1.0"
}
diff --git a/examples/demo/src/App.js b/examples/demo/src/App.js
index c8612e697..6484dbe69 100644
--- a/examples/demo/src/App.js
+++ b/examples/demo/src/App.js
@@ -1,8 +1,8 @@
import React, {Component} from 'react';
import plotly from 'plotly.js/dist/plotly';
import createPlotComponent from 'react-plotly.js/factory';
-import PlotlyEditor from 'react-plotly.js-editor';
-import 'react-plotly.js-editor/lib/react-plotly.js-editor.css';
+import PlotlyEditor from 'react-chart-editor';
+import 'react-chart-editor/lib/react-chart-editor.css';
import Nav from './Nav';
const dataSources = {
diff --git a/examples/redux/README.md b/examples/redux/README.md
index aba83cdc3..d184393e7 100644
--- a/examples/redux/README.md
+++ b/examples/redux/README.md
@@ -1,4 +1,4 @@
-# Redux `react-plotly.js-editor` example
+# Redux `react-chart-editor` example
This example built with [`create-react-app`](https://github.com/facebookincubator/create-react-app) uses the `DefaultEditor`, with synchronously-loaded data and a [Redux](https://redux.js.org) for state manage, so as to demo the Redux machinery required to.
diff --git a/examples/redux/package.json b/examples/redux/package.json
index 3fa2efe5f..265c158f4 100644
--- a/examples/redux/package.json
+++ b/examples/redux/package.json
@@ -7,7 +7,7 @@
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
- "react-plotly.js-editor": "latest",
+ "react-chart-editor": "latest",
"react-plotly.js": "^1.2.0",
"react-redux": "^5.0.6",
"react-scripts": "1.0.17",
diff --git a/examples/redux/src/App.js b/examples/redux/src/App.js
index 7f5302712..49e51526e 100644
--- a/examples/redux/src/App.js
+++ b/examples/redux/src/App.js
@@ -1,5 +1,5 @@
-import 'react-plotly.js-editor/lib/react-plotly.js-editor.css';
-import PlotlyEditor from 'react-plotly.js-editor';
+import 'react-chart-editor/lib/react-chart-editor.css';
+import PlotlyEditor from 'react-chart-editor';
import PropTypes from 'prop-types';
import React, {Component} from 'react';
import createPlotComponent from 'react-plotly.js/factory';
diff --git a/examples/simple/README.md b/examples/simple/README.md
index 7cd1a5749..a209491e9 100644
--- a/examples/simple/README.md
+++ b/examples/simple/README.md
@@ -1,4 +1,4 @@
-# Simple `react-plotly.js-editor` example
+# Simple `react-chart-editor` example
This example built with [`create-react-app`](https://github.com/facebookincubator/create-react-app) uses the `DefaultEditor`, with synchronously-loaded data and a top-level component for state, so as to demo the basic functionality of this component.
diff --git a/examples/simple/package.json b/examples/simple/package.json
index 8b391b5da..bb569bc7f 100644
--- a/examples/simple/package.json
+++ b/examples/simple/package.json
@@ -6,7 +6,7 @@
"plotly.js": "^1.32.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
- "react-plotly.js-editor": "latest",
+ "react-chart-editor": "latest",
"react-plotly.js": "^1.2.0",
"react-scripts": "1.0.17"
},
@@ -16,7 +16,7 @@
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
- "homepage": "http://plotly.github.io/react-plotly.js-editor",
+ "homepage": "http://plotly.github.io/react-chart-editor",
"devDependencies": {
"gh-pages": "^1.1.0"
}
diff --git a/examples/simple/src/App.js b/examples/simple/src/App.js
index d0ce37565..34763a486 100644
--- a/examples/simple/src/App.js
+++ b/examples/simple/src/App.js
@@ -1,8 +1,8 @@
import React, {Component} from 'react';
import plotly from 'plotly.js/dist/plotly';
import createPlotComponent from 'react-plotly.js/factory';
-import PlotlyEditor from 'react-plotly.js-editor';
-import 'react-plotly.js-editor/lib/react-plotly.js-editor.css';
+import PlotlyEditor from 'react-chart-editor';
+import 'react-chart-editor/lib/react-chart-editor.css';
const dataSources = {
col1: [1, 2, 3], // eslint-disable-line no-magic-numbers
diff --git a/package.json b/package.json
index fac0cf44a..d8b27b9c1 100644
--- a/package.json
+++ b/package.json
@@ -1,10 +1,10 @@
{
- "name": "react-plotly.js-editor",
+ "name": "react-chart-editor",
"description": "plotly.js chart editor react component UI",
"version": "0.10.2",
"author": "Plotly, Inc.",
"bugs": {
- "url": "https://github.com/plotly/react-plotly.js-editor/issues"
+ "url": "https://github.com/plotly/react-chart-editor/issues"
},
"dependencies": {
"classnames": "^2.2.5",
@@ -73,7 +73,7 @@
"react": ">15",
"react-dom": ">15"
},
- "homepage": "https://plotly.github.io/react-plotly.js-editor/",
+ "homepage": "https://plotly.github.io/react-chart-editor/",
"jest": {
"roots": [
"/src/"
@@ -97,7 +97,7 @@
"main": "lib/index.js",
"repository": {
"type": "git",
- "url": "https://github.com/plotly/react-plotly.js-editor.git"
+ "url": "https://github.com/plotly/react-chart-editor.git"
},
"scripts": {
"lint": "prettier --write \"src/**/*.js\"",
@@ -113,7 +113,7 @@
"test:js": "jest --setupTestFrameworkScriptFile=raf/polyfill",
"test:lint": "eslint \"src/**/*.js\" && echo -e '\\033[0;32m'PASS'\\033[0m'",
"test:pretty": "prettier -l \"src/**/*.js\" && echo -e '\\033[0;32m'PASS'\\033[0m'",
- "watch": "babel src --watch --out-dir lib --source-maps | node-sass -w src/styles/main.scss lib/react-plotly.js-editor.css",
+ "watch": "babel src --watch --out-dir lib --source-maps | node-sass -w src/styles/main.scss lib/react-chart-editor.css",
"watch-test": "jest --watch"
}
}
diff --git a/scripts/postcss.js b/scripts/postcss.js
index e643fe535..ab949a409 100644
--- a/scripts/postcss.js
+++ b/scripts/postcss.js
@@ -10,7 +10,7 @@ const removeRoot = require('postcss-remove-root');
const SASS_ENV = process.env.SASS_ENV || 'default';
const BUILD_ENV = process.env.BUILD_ENV || 'lib';
-const fileName = `react-plotly.js-editor`;
+const fileName = `react-chart-editor`;
const dist = `${BUILD_ENV}/${fileName}.css`;
const internetExplorerPostCSS = () => {
diff --git a/scripts/styles.js b/scripts/styles.js
index bcc75e976..aeae2f1b7 100644
--- a/scripts/styles.js
+++ b/scripts/styles.js
@@ -7,7 +7,7 @@ const SASS_ENV = process.env.SASS_ENV || 'default';
const BUILD_ENV = process.env.BUILD_ENV || 'lib';
const src = 'src/styles/main.scss';
-const fileName = `react-plotly.js-editor`;
+const fileName = `react-chart-editor`;
const dist =
SASS_ENV === 'ie'
? `${BUILD_ENV}/${fileName}.ie.css`
diff --git a/scripts/translationKeys/combined-translation-keys.txt b/scripts/translationKeys/combined-translation-keys.txt
index 01259966e..6ccc6f8a1 100644
--- a/scripts/translationKeys/combined-translation-keys.txt
+++ b/scripts/translationKeys/combined-translation-keys.txt
@@ -1,76 +1,76 @@
-# // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:251
-$ // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:250
-% // react-plotly.js-editor: /components/fields/ErrorBars.js:101
-135 // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:200
-180 // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:201
-2D Contour Histogram // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:35
-2D Histogram // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:31
-3D Line // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:135
-3D Mesh // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:63
-3D Scatter // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:55
-3D Surface // react-plotly.js-editor: /lib/traceTypes.js:101
-3D charts // react-plotly.js-editor: /lib/traceTypes.js:13
-45 // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:198
-90 // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:199
-@ // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:252
-A // react-plotly.js-editor: /components/fields/derived.js:524
-Africa // react-plotly.js-editor: /components/fields/derived.js:435
-Aitoff // react-plotly.js-editor: /components/fields/derived.js:468
-Albers USA // react-plotly.js-editor: /components/fields/derived.js:477
-All // react-plotly.js-editor: /lib/connectAxesToLayout.js:14
-All Traces // react-plotly.js-editor: /components/containers/TraceAccordion.js:83
-Ambient // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:289
-Anchor // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:74
-Anchor Point // react-plotly.js-editor: /default_panels/StyleImagesPanel.js:40
-Anchor To // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:76
-Angle // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:193
-Annotation // react-plotly.js-editor: /components/containers/AnnotationAccordion.js:28
-Area // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:130
-Arrow // react-plotly.js-editor: /default_panels/StyleNotesPanel.js:30
-Arrowhead // react-plotly.js-editor: /default_panels/StyleNotesPanel.js:40
-Asia // react-plotly.js-editor: /components/fields/derived.js:434
-Aspect Ratio // react-plotly.js-editor: /default_panels/StyleImagesPanel.js:28
-Asymmetric // react-plotly.js-editor: /components/fields/ErrorBars.js:81
-Atlas Map // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:67
-Auto // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:89
+# // react-chart-editor: /default_panels/StyleAxesPanel.js:251
+$ // react-chart-editor: /default_panels/StyleAxesPanel.js:250
+% // react-chart-editor: /components/fields/ErrorBars.js:101
+135 // react-chart-editor: /default_panels/StyleAxesPanel.js:200
+180 // react-chart-editor: /default_panels/StyleAxesPanel.js:201
+2D Contour Histogram // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:35
+2D Histogram // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:31
+3D Line // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:135
+3D Mesh // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:63
+3D Scatter // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:55
+3D Surface // react-chart-editor: /lib/traceTypes.js:101
+3D charts // react-chart-editor: /lib/traceTypes.js:13
+45 // react-chart-editor: /default_panels/StyleAxesPanel.js:198
+90 // react-chart-editor: /default_panels/StyleAxesPanel.js:199
+@ // react-chart-editor: /default_panels/StyleAxesPanel.js:252
+A // react-chart-editor: /components/fields/derived.js:524
+Africa // react-chart-editor: /components/fields/derived.js:435
+Aitoff // react-chart-editor: /components/fields/derived.js:468
+Albers USA // react-chart-editor: /components/fields/derived.js:477
+All // react-chart-editor: /lib/connectAxesToLayout.js:14
+All Traces // react-chart-editor: /components/containers/TraceAccordion.js:83
+Ambient // react-chart-editor: /default_panels/StyleTracesPanel.js:289
+Anchor // react-chart-editor: /default_panels/StyleAxesPanel.js:74
+Anchor Point // react-chart-editor: /default_panels/StyleImagesPanel.js:40
+Anchor To // react-chart-editor: /default_panels/StyleAxesPanel.js:76
+Angle // react-chart-editor: /default_panels/StyleAxesPanel.js:193
+Annotation // react-chart-editor: /components/containers/AnnotationAccordion.js:28
+Area // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:130
+Arrow // react-chart-editor: /default_panels/StyleNotesPanel.js:30
+Arrowhead // react-chart-editor: /default_panels/StyleNotesPanel.js:40
+Asia // react-chart-editor: /components/fields/derived.js:434
+Aspect Ratio // react-chart-editor: /default_panels/StyleImagesPanel.js:28
+Asymmetric // react-chart-editor: /components/fields/ErrorBars.js:81
+Atlas Map // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:67
+Auto // react-chart-editor: /default_panels/StyleAxesPanel.js:89
Autoscale // plotly.js: components/modebar/buttons.js:139
-Axes // react-plotly.js-editor: /DefaultEditor.js:24
-Axes to Use // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:69
-Axis Background // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:167
-Axis Line // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:114
-Axis to Style // react-plotly.js-editor: /components/fields/AxesSelector.js:33
-Azimuthal Equal Area // react-plotly.js-editor: /components/fields/derived.js:457
-Azimuthal Equidistant // react-plotly.js-editor: /components/fields/derived.js:458
-B // react-plotly.js-editor: /components/fields/derived.js:525
-Background Color // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:326
-Bar // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:19
-Bar Padding // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:148
-Bar Width // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:146
-Bars // react-plotly.js-editor: /components/containers/TraceMarkerSection.js:20
-Blank // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:173
-Border Color // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:335
-Border Width // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:330
-Borders and Background // react-plotly.js-editor: /default_panels/StyleColorbarsPanel.js:238
-Bottom // react-plotly.js-editor: /components/fields/derived.js:100
-Bottom Center // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:201
-Bottom Left // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:200
-Bottom Right // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:202
-Boundaries // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:61
-Box // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:15
-Box Padding // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:149
+Axes // react-chart-editor: /DefaultEditor.js:24
+Axes to Use // react-chart-editor: /default_panels/GraphCreatePanel.js:69
+Axis Background // react-chart-editor: /default_panels/StyleAxesPanel.js:167
+Axis Line // react-chart-editor: /default_panels/StyleAxesPanel.js:114
+Axis to Style // react-chart-editor: /components/fields/AxesSelector.js:33
+Azimuthal Equal Area // react-chart-editor: /components/fields/derived.js:457
+Azimuthal Equidistant // react-chart-editor: /components/fields/derived.js:458
+B // react-chart-editor: /components/fields/derived.js:525
+Background Color // react-chart-editor: /default_panels/StyleAxesPanel.js:326
+Bar // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:19
+Bar Padding // react-chart-editor: /default_panels/StyleTracesPanel.js:148
+Bar Width // react-chart-editor: /default_panels/StyleTracesPanel.js:146
+Bars // react-chart-editor: /components/containers/TraceMarkerSection.js:20
+Blank // react-chart-editor: /default_panels/StyleTracesPanel.js:173
+Border Color // react-chart-editor: /default_panels/StyleAxesPanel.js:335
+Border Width // react-chart-editor: /default_panels/StyleAxesPanel.js:330
+Borders and Background // react-chart-editor: /default_panels/StyleColorbarsPanel.js:238
+Bottom // react-chart-editor: /components/fields/derived.js:100
+Bottom Center // react-chart-editor: /default_panels/StyleTracesPanel.js:201
+Bottom Left // react-chart-editor: /default_panels/StyleTracesPanel.js:200
+Bottom Right // react-chart-editor: /default_panels/StyleTracesPanel.js:202
+Boundaries // react-chart-editor: /default_panels/StyleAxesPanel.js:61
+Box // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:15
+Box Padding // react-chart-editor: /default_panels/StyleTracesPanel.js:149
Box Select // plotly.js: components/modebar/buttons.js:103
-Box Width // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:147
-Boxes // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:384
-C // react-plotly.js-editor: /components/fields/derived.js:526
-Candlestick // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:115
-Canvas // react-plotly.js-editor: /default_panels/StyleLayoutPanel.js:19
-Carpet // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:99
-Carpet Contour // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:107
-Carpet Scatter // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:103
-Cell Options // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:91
-Cells // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:77
-Center // react-plotly.js-editor: /default_panels/StyleColorbarsPanel.js:80
-Choropleth // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:71
+Box Width // react-chart-editor: /default_panels/StyleTracesPanel.js:147
+Boxes // react-chart-editor: /default_panels/StyleTracesPanel.js:384
+C // react-chart-editor: /components/fields/derived.js:526
+Candlestick // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:115
+Canvas // react-chart-editor: /default_panels/StyleLayoutPanel.js:19
+Carpet // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:99
+Carpet Contour // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:107
+Carpet Scatter // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:103
+Cell Options // react-chart-editor: /default_panels/GraphCreatePanel.js:91
+Cells // react-chart-editor: /default_panels/StyleTracesPanel.js:77
+Center // react-chart-editor: /default_panels/StyleColorbarsPanel.js:80
+Choropleth // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:71
Click to enter Colorscale title // plotly.js: plots/plots.js:320
Click to enter Component A title // plotly.js: plots/ternary/ternary.js:392
Click to enter Component B title // plotly.js: plots/ternary/ternary.js:407
@@ -79,365 +79,365 @@ Click to enter Plot title
Click to enter X axis title // plotly.js: plots/plots.js:318
Click to enter Y axis title // plotly.js: plots/plots.js:319
Click to enter radial axis title // plotly.js: plots/polar/polar.js:373
-Close // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:61
-Collapse All // react-plotly.js-editor: /components/containers/PanelHeader.js:30
-Color // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:133
-Color Bar // react-plotly.js-editor: /default_panels/StyleColorbarsPanel.js:239
-Color Bars // react-plotly.js-editor: /DefaultEditor.js:26
-Coloring // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:257
-Colorscale // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:136
-Column Options // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:97
-Columns // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:66
-Common Case: An 'All' tab might display this message because the X and Y tabs contain different settings. // react-plotly.js-editor: /lib/constants.js:24
+Close // react-chart-editor: /default_panels/GraphCreatePanel.js:61
+Collapse All // react-chart-editor: /components/containers/PanelHeader.js:30
+Color // react-chart-editor: /default_panels/GraphCreatePanel.js:133
+Color Bar // react-chart-editor: /default_panels/StyleColorbarsPanel.js:239
+Color Bars // react-chart-editor: /DefaultEditor.js:26
+Coloring // react-chart-editor: /default_panels/StyleTracesPanel.js:257
+Colorscale // react-chart-editor: /default_panels/StyleTracesPanel.js:136
+Column Options // react-chart-editor: /default_panels/GraphCreatePanel.js:97
+Columns // react-chart-editor: /default_panels/GraphCreatePanel.js:66
+Common Case: An 'All' tab might display this message because the X and Y tabs contain different settings. // react-chart-editor: /lib/constants.js:24
Compare data on hover // plotly.js: components/modebar/buttons.js:167
-Conic Conformal // react-plotly.js-editor: /components/fields/derived.js:460
-Conic Equal Area // react-plotly.js-editor: /components/fields/derived.js:459
-Conic Equidistant // react-plotly.js-editor: /components/fields/derived.js:461
-Connect // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:172
-Connect Gaps // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:169
-Constant // react-plotly.js-editor: /components/fields/ErrorBars.js:102
-Contain // react-plotly.js-editor: /default_panels/StyleImagesPanel.js:31
-Container // react-plotly.js-editor: /default_panels/StyleColorbarsPanel.js:243
-Continue // react-plotly.js-editor: /components/widgets/text_editors/MultiFormat.js:205
-Continuing will convert your LaTeX expression into raw text. // react-plotly.js-editor: /components/widgets/text_editors/MultiFormat.js:122
-Continuing will convert your note to LaTeX-style text. // react-plotly.js-editor: /components/widgets/text_editors/MultiFormat.js:117
-Continuing will remove your expression. // react-plotly.js-editor: /components/widgets/text_editors/MultiFormat.js:127
-Contour // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:43
-Contour Color // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:375
-Contour Lines // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:266
-Contour Width // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:376
-Contours // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:255
-Country Abbreviations (ISO-3) // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:112
-Country Names // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:111
-Create // react-plotly.js-editor: /DefaultEditor.js:20
-Custom // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:90
-Custom Color // react-plotly.js-editor: /components/widgets/ColorPicker.js:52
-Custom Data // react-plotly.js-editor: /components/fields/ErrorBars.js:110
-Data // react-plotly.js-editor: /components/fields/ErrorBars.js:104
-Decreasing Trace Styles // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:326
-Default Colors // react-plotly.js-editor: /components/widgets/ColorPicker.js:75
-Diffuse // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:290
-Disable // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:345
-Display // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:96
-Distributions // react-plotly.js-editor: /lib/traceTypes.js:21
+Conic Conformal // react-chart-editor: /components/fields/derived.js:460
+Conic Equal Area // react-chart-editor: /components/fields/derived.js:459
+Conic Equidistant // react-chart-editor: /components/fields/derived.js:461
+Connect // react-chart-editor: /default_panels/StyleTracesPanel.js:172
+Connect Gaps // react-chart-editor: /default_panels/StyleTracesPanel.js:169
+Constant // react-chart-editor: /components/fields/ErrorBars.js:102
+Contain // react-chart-editor: /default_panels/StyleImagesPanel.js:31
+Container // react-chart-editor: /default_panels/StyleColorbarsPanel.js:243
+Continue // react-chart-editor: /components/widgets/text_editors/MultiFormat.js:205
+Continuing will convert your LaTeX expression into raw text. // react-chart-editor: /components/widgets/text_editors/MultiFormat.js:122
+Continuing will convert your note to LaTeX-style text. // react-chart-editor: /components/widgets/text_editors/MultiFormat.js:117
+Continuing will remove your expression. // react-chart-editor: /components/widgets/text_editors/MultiFormat.js:127
+Contour // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:43
+Contour Color // react-chart-editor: /default_panels/StyleTracesPanel.js:375
+Contour Lines // react-chart-editor: /default_panels/StyleTracesPanel.js:266
+Contour Width // react-chart-editor: /default_panels/StyleTracesPanel.js:376
+Contours // react-chart-editor: /default_panels/StyleTracesPanel.js:255
+Country Abbreviations (ISO-3) // react-chart-editor: /default_panels/GraphCreatePanel.js:112
+Country Names // react-chart-editor: /default_panels/GraphCreatePanel.js:111
+Create // react-chart-editor: /DefaultEditor.js:20
+Custom // react-chart-editor: /default_panels/StyleAxesPanel.js:90
+Custom Color // react-chart-editor: /components/widgets/ColorPicker.js:52
+Custom Data // react-chart-editor: /components/fields/ErrorBars.js:110
+Data // react-chart-editor: /components/fields/ErrorBars.js:104
+Decreasing Trace Styles // react-chart-editor: /default_panels/StyleTracesPanel.js:326
+Default Colors // react-chart-editor: /components/widgets/ColorPicker.js:75
+Diffuse // react-chart-editor: /default_panels/StyleTracesPanel.js:290
+Disable // react-chart-editor: /default_panels/StyleAxesPanel.js:345
+Display // react-chart-editor: /default_panels/StyleTracesPanel.js:96
+Distributions // react-chart-editor: /lib/traceTypes.js:21
Double-click on legend to isolate one trace // plotly.js: components/legend/handle_click.js:90
Double-click to zoom back out // plotly.js: plots/cartesian/dragbox.js:963
Download plot as a png // plotly.js: components/modebar/buttons.js:52
-E+6 // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:212
-Eckert4 // react-plotly.js-editor: /components/fields/derived.js:456
+E+6 // react-chart-editor: /default_panels/StyleAxesPanel.js:212
+Eckert4 // react-chart-editor: /components/fields/derived.js:456
Edit in Chart Studio // plotly.js: components/modebar/buttons.js:76
-Edit in HTML // react-plotly.js-editor: /components/widgets/text_editors/MultiFormat.js:35
-Edit in Rich Text // react-plotly.js-editor: /components/widgets/text_editors/MultiFormat.js:250
-Ellipse // react-plotly.js-editor: /default_panels/StyleShapesPanel.js:30
-Enable // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:344
-End Point // react-plotly.js-editor: /default_panels/StyleShapesPanel.js:37
-End Position // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:71
-Enter LaTeX formatted text // react-plotly.js-editor: /components/fields/TextEditor.js:34
-Enter Link URL // react-plotly.js-editor: /components/widgets/text_editors/RichText/LinkEditor.js:92
-Enter html formatted text // react-plotly.js-editor: /components/fields/TextEditor.js:51
-Equirectangular // react-plotly.js-editor: /components/fields/derived.js:449
-Error (+) // react-plotly.js-editor: /components/fields/ErrorBars.js:138
-Error (-) // react-plotly.js-editor: /components/fields/ErrorBars.js:142
-Error Bars X // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:73
-Error Bars Y // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:77
-Error Bars Z // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:81
-Error Type // react-plotly.js-editor: /components/fields/ErrorBars.js:98
-Europe // react-plotly.js-editor: /components/fields/derived.js:433
-Every // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:226
-Expand All // react-plotly.js-editor: /components/containers/PanelHeader.js:35
-Exponents // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:206
-Face Normal // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:299
-Facecolor // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:104
-Fill // react-plotly.js-editor: /default_panels/StyleImagesPanel.js:32
-Fill Color // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:86
-Fill to // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:116
-Filled Area // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:115
-Fills // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:398
-Finance // react-plotly.js-editor: /lib/traceTypes.js:17
-First // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:227
-Fixed Height // react-plotly.js-editor: /default_panels/StyleLayoutPanel.js:28
-Fixed Width // react-plotly.js-editor: /default_panels/StyleLayoutPanel.js:27
-Flatshading // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:107
-Font Color // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:87
-Font Size // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:88
-Fraction of Plot // react-plotly.js-editor: /default_panels/StyleColorbarsPanel.js:57
-Free // react-plotly.js-editor: /components/fields/derived.js:41
-Fresnel // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:293
-Gaps in Data // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:242
-Global Font // react-plotly.js-editor: /default_panels/StyleLayoutPanel.js:51
-Gnomonic // react-plotly.js-editor: /components/fields/derived.js:462
-Go back // react-plotly.js-editor: /components/widgets/text_editors/MultiFormat.js:198
-Go to the 'Create' tab to define traces. // react-plotly.js-editor: /components/containers/TraceRequiredPanel.js:16
-Graph // react-plotly.js-editor: /DefaultEditor.js:20
-Grid Lines // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:144
-Hammer // react-plotly.js-editor: /components/fields/derived.js:465
-Header // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:58
-Header Options // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:85
-Headers // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:65
-Heads up! // react-plotly.js-editor: /components/widgets/text_editors/MultiFormat.js:181
-Heatmap // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:236
-Heatmap GL // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:83
-Height // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:320
-Hidden // react-plotly.js-editor: /components/fields/ErrorBars.js:82
-Hide // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:119
-High // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:59
-Highlight // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:342
-Histogram // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:27
-Horizontal // react-plotly.js-editor: /default_panels/StyleLegendPanel.js:88
-Horizontal Boundaries // react-plotly.js-editor: /default_panels/StyleShapesPanel.js:34
-Horizontal Gaps // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:237
-Horizontal Padding // react-plotly.js-editor: /default_panels/StyleColorbarsPanel.js:105
-Horizontal Position // react-plotly.js-editor: /default_panels/StyleColorbarsPanel.js:73
-Horizontal Positioning // react-plotly.js-editor: /default_panels/StyleColorbarsPanel.js:72
-Hover Action // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:379
-Hover Projections // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:350
-Hover on // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:382
-I (Optional) // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:55
+Edit in HTML // react-chart-editor: /components/widgets/text_editors/MultiFormat.js:35
+Edit in Rich Text // react-chart-editor: /components/widgets/text_editors/MultiFormat.js:250
+Ellipse // react-chart-editor: /default_panels/StyleShapesPanel.js:30
+Enable // react-chart-editor: /default_panels/StyleAxesPanel.js:344
+End Point // react-chart-editor: /default_panels/StyleShapesPanel.js:37
+End Position // react-chart-editor: /default_panels/StyleAxesPanel.js:71
+Enter LaTeX formatted text // react-chart-editor: /components/fields/TextEditor.js:34
+Enter Link URL // react-chart-editor: /components/widgets/text_editors/RichText/LinkEditor.js:92
+Enter html formatted text // react-chart-editor: /components/fields/TextEditor.js:51
+Equirectangular // react-chart-editor: /components/fields/derived.js:449
+Error (+) // react-chart-editor: /components/fields/ErrorBars.js:138
+Error (-) // react-chart-editor: /components/fields/ErrorBars.js:142
+Error Bars X // react-chart-editor: /default_panels/GraphCreatePanel.js:73
+Error Bars Y // react-chart-editor: /default_panels/GraphCreatePanel.js:77
+Error Bars Z // react-chart-editor: /default_panels/GraphCreatePanel.js:81
+Error Type // react-chart-editor: /components/fields/ErrorBars.js:98
+Europe // react-chart-editor: /components/fields/derived.js:433
+Every // react-chart-editor: /default_panels/StyleAxesPanel.js:226
+Expand All // react-chart-editor: /components/containers/PanelHeader.js:35
+Exponents // react-chart-editor: /default_panels/StyleAxesPanel.js:206
+Face Normal // react-chart-editor: /default_panels/StyleTracesPanel.js:299
+Facecolor // react-chart-editor: /default_panels/GraphCreatePanel.js:104
+Fill // react-chart-editor: /default_panels/StyleImagesPanel.js:32
+Fill Color // react-chart-editor: /default_panels/GraphCreatePanel.js:86
+Fill to // react-chart-editor: /default_panels/StyleTracesPanel.js:116
+Filled Area // react-chart-editor: /default_panels/StyleTracesPanel.js:115
+Fills // react-chart-editor: /default_panels/StyleTracesPanel.js:398
+Finance // react-chart-editor: /lib/traceTypes.js:17
+First // react-chart-editor: /default_panels/StyleAxesPanel.js:227
+Fixed Height // react-chart-editor: /default_panels/StyleLayoutPanel.js:28
+Fixed Width // react-chart-editor: /default_panels/StyleLayoutPanel.js:27
+Flatshading // react-chart-editor: /default_panels/StyleTracesPanel.js:107
+Font Color // react-chart-editor: /default_panels/GraphCreatePanel.js:87
+Font Size // react-chart-editor: /default_panels/GraphCreatePanel.js:88
+Fraction of Plot // react-chart-editor: /default_panels/StyleColorbarsPanel.js:57
+Free // react-chart-editor: /components/fields/derived.js:41
+Fresnel // react-chart-editor: /default_panels/StyleTracesPanel.js:293
+Gaps in Data // react-chart-editor: /default_panels/StyleTracesPanel.js:242
+Global Font // react-chart-editor: /default_panels/StyleLayoutPanel.js:51
+Gnomonic // react-chart-editor: /components/fields/derived.js:462
+Go back // react-chart-editor: /components/widgets/text_editors/MultiFormat.js:198
+Go to the 'Create' tab to define traces. // react-chart-editor: /components/containers/TraceRequiredPanel.js:16
+Graph // react-chart-editor: /DefaultEditor.js:20
+Grid Lines // react-chart-editor: /default_panels/StyleAxesPanel.js:144
+Hammer // react-chart-editor: /components/fields/derived.js:465
+Header // react-chart-editor: /default_panels/StyleTracesPanel.js:58
+Header Options // react-chart-editor: /default_panels/GraphCreatePanel.js:85
+Headers // react-chart-editor: /default_panels/GraphCreatePanel.js:65
+Heads up! // react-chart-editor: /components/widgets/text_editors/MultiFormat.js:181
+Heatmap // react-chart-editor: /default_panels/StyleTracesPanel.js:236
+Heatmap GL // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:83
+Height // react-chart-editor: /default_panels/StyleAxesPanel.js:320
+Hidden // react-chart-editor: /components/fields/ErrorBars.js:82
+Hide // react-chart-editor: /default_panels/StyleAxesPanel.js:119
+High // react-chart-editor: /default_panels/GraphCreatePanel.js:59
+Highlight // react-chart-editor: /default_panels/StyleTracesPanel.js:342
+Histogram // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:27
+Horizontal // react-chart-editor: /default_panels/StyleLegendPanel.js:88
+Horizontal Boundaries // react-chart-editor: /default_panels/StyleShapesPanel.js:34
+Horizontal Gaps // react-chart-editor: /default_panels/StyleTracesPanel.js:237
+Horizontal Padding // react-chart-editor: /default_panels/StyleColorbarsPanel.js:105
+Horizontal Position // react-chart-editor: /default_panels/StyleColorbarsPanel.js:73
+Horizontal Positioning // react-chart-editor: /default_panels/StyleColorbarsPanel.js:72
+Hover Action // react-chart-editor: /default_panels/StyleTracesPanel.js:379
+Hover Projections // react-chart-editor: /default_panels/StyleAxesPanel.js:350
+Hover on // react-chart-editor: /default_panels/StyleTracesPanel.js:382
+I (Optional) // react-chart-editor: /default_panels/GraphCreatePanel.js:55
IE only supports svg. Changing format to svg. // plotly.js: components/modebar/buttons.js:60
-Image // react-plotly.js-editor: /components/containers/ImageAccordion.js:23
-Images // react-plotly.js-editor: /DefaultEditor.js:28
-Increasing Trace Styles // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:310
-Individual // react-plotly.js-editor: /components/containers/TraceAccordion.js:84
-Inside // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:287
-Intensity // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:103
-Interpolate Gaps // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:246
-J (Optional) // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:56
-Jitter // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:128
-K (Optional) // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:57
-Kavrayskiy7 // react-plotly.js-editor: /components/fields/derived.js:453
-LaTeX // react-plotly.js-editor: /components/widgets/text_editors/MultiFormat.js:30
-LaTeX is a math typesetting language that doesn't work with rich text. // react-plotly.js-editor: /components/widgets/text_editors/MultiFormat.js:115
-Label // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:50
-Label Formatting // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:220
-Labels // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:26
+Image // react-chart-editor: /components/containers/ImageAccordion.js:23
+Images // react-chart-editor: /DefaultEditor.js:28
+Increasing Trace Styles // react-chart-editor: /default_panels/StyleTracesPanel.js:310
+Individual // react-chart-editor: /components/containers/TraceAccordion.js:84
+Inside // react-chart-editor: /default_panels/StyleAxesPanel.js:287
+Intensity // react-chart-editor: /default_panels/GraphCreatePanel.js:103
+Interpolate Gaps // react-chart-editor: /default_panels/StyleTracesPanel.js:246
+J (Optional) // react-chart-editor: /default_panels/GraphCreatePanel.js:56
+Jitter // react-chart-editor: /default_panels/StyleTracesPanel.js:128
+K (Optional) // react-chart-editor: /default_panels/GraphCreatePanel.js:57
+Kavrayskiy7 // react-chart-editor: /components/fields/derived.js:453
+LaTeX // react-chart-editor: /components/widgets/text_editors/MultiFormat.js:30
+LaTeX is a math typesetting language that doesn't work with rich text. // react-chart-editor: /components/widgets/text_editors/MultiFormat.js:115
+Label // react-chart-editor: /default_panels/StyleTracesPanel.js:50
+Label Formatting // react-chart-editor: /default_panels/StyleAxesPanel.js:220
+Labels // react-chart-editor: /default_panels/GraphCreatePanel.js:26
Lasso Select // plotly.js: components/modebar/buttons.js:112
-Last // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:228
-Latitude // react-plotly.js-editor: /components/fields/derived.js:506
-Layout // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:60
-Left // react-plotly.js-editor: /components/fields/derived.js:89
-Legend // react-plotly.js-editor: /default_panels/StyleLegendPanel.js:19
-Legend Box // react-plotly.js-editor: /default_panels/StyleLegendPanel.js:32
-Length // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:292
-Light Position // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:304
-Lighting // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:288
-Line // react-plotly.js-editor: /default_panels/StyleShapesPanel.js:28
-Line Color // react-plotly.js-editor: /default_panels/StyleShapesPanel.js:47
-Line Width // react-plotly.js-editor: /default_panels/StyleNotesPanel.js:38
-Linear // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:98
-Lines // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:113
-Location // react-plotly.js-editor: /components/fields/derived.js:496
-Location Format // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:107
-Locations // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:28
-Longitude // react-plotly.js-editor: /components/fields/derived.js:505
-Looks like there aren't any traces defined yet. // react-plotly.js-editor: /components/containers/TraceRequiredPanel.js:15
-Low // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:60
-Map Region // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:120
-Maps // react-plotly.js-editor: /lib/traceTypes.js:25
-Margin Color // react-plotly.js-editor: /default_panels/StyleLayoutPanel.js:30
-Margins and Padding // react-plotly.js-editor: /default_panels/StyleLayoutPanel.js:61
-Max // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:94
-Max Contour // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:285
-Max Contours // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:281
-Max Number of Labels // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:279
-Max Number of Markers // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:307
-Mean // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:345
-Mercator // react-plotly.js-editor: /components/fields/derived.js:450
-Middle // react-plotly.js-editor: /default_panels/StyleColorbarsPanel.js:93
-Middle Center // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:198
-Middle Left // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:197
-Middle Right // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:199
-Miller // react-plotly.js-editor: /components/fields/derived.js:454
-Min // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:93
-Min Contour // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:284
-Mirror Axis // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:136
-Mollweide // react-plotly.js-editor: /components/fields/derived.js:464
-Multiple Values // react-plotly.js-editor: /lib/constants.js:18
-Name // react-plotly.js-editor: /components/fields/derived.js:499
-Natural Earth // react-plotly.js-editor: /components/fields/derived.js:452
-No // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:138
-No Results // react-plotly.js-editor: /components/widgets/Dropdown.js:75
-None // react-plotly.js-editor: /components/fields/derived.js:545
-Normal // react-plotly.js-editor: /default_panels/StyleLegendPanel.js:96
-North America // react-plotly.js-editor: /components/fields/derived.js:436
-Note Text // react-plotly.js-editor: /default_panels/StyleNotesPanel.js:23
-Notes // react-plotly.js-editor: /DefaultEditor.js:23
-Number of Contours // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:274
-Number of Labels // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:268
-Number of Markers // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:296
-OHLC // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:111
-Off // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:140
-On // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:139
-On Hover // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:361
-Opacity // react-plotly.js-editor: /default_panels/StyleShapesPanel.js:52
-Open // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:58
-Options // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:102
+Last // react-chart-editor: /default_panels/StyleAxesPanel.js:228
+Latitude // react-chart-editor: /components/fields/derived.js:506
+Layout // react-chart-editor: /default_panels/StyleAxesPanel.js:60
+Left // react-chart-editor: /components/fields/derived.js:89
+Legend // react-chart-editor: /default_panels/StyleLegendPanel.js:19
+Legend Box // react-chart-editor: /default_panels/StyleLegendPanel.js:32
+Length // react-chart-editor: /default_panels/StyleAxesPanel.js:292
+Light Position // react-chart-editor: /default_panels/StyleTracesPanel.js:304
+Lighting // react-chart-editor: /default_panels/StyleTracesPanel.js:288
+Line // react-chart-editor: /default_panels/StyleShapesPanel.js:28
+Line Color // react-chart-editor: /default_panels/StyleShapesPanel.js:47
+Line Width // react-chart-editor: /default_panels/StyleNotesPanel.js:38
+Linear // react-chart-editor: /default_panels/StyleAxesPanel.js:98
+Lines // react-chart-editor: /default_panels/StyleAxesPanel.js:113
+Location // react-chart-editor: /components/fields/derived.js:496
+Location Format // react-chart-editor: /default_panels/GraphCreatePanel.js:107
+Locations // react-chart-editor: /default_panels/GraphCreatePanel.js:28
+Longitude // react-chart-editor: /components/fields/derived.js:505
+Looks like there aren't any traces defined yet. // react-chart-editor: /components/containers/TraceRequiredPanel.js:15
+Low // react-chart-editor: /default_panels/GraphCreatePanel.js:60
+Map Region // react-chart-editor: /default_panels/GraphCreatePanel.js:120
+Maps // react-chart-editor: /lib/traceTypes.js:25
+Margin Color // react-chart-editor: /default_panels/StyleLayoutPanel.js:30
+Margins and Padding // react-chart-editor: /default_panels/StyleLayoutPanel.js:61
+Max // react-chart-editor: /default_panels/StyleAxesPanel.js:94
+Max Contour // react-chart-editor: /default_panels/StyleTracesPanel.js:285
+Max Contours // react-chart-editor: /default_panels/StyleTracesPanel.js:281
+Max Number of Labels // react-chart-editor: /default_panels/StyleAxesPanel.js:279
+Max Number of Markers // react-chart-editor: /default_panels/StyleAxesPanel.js:307
+Mean // react-chart-editor: /default_panels/StyleTracesPanel.js:345
+Mercator // react-chart-editor: /components/fields/derived.js:450
+Middle // react-chart-editor: /default_panels/StyleColorbarsPanel.js:93
+Middle Center // react-chart-editor: /default_panels/StyleTracesPanel.js:198
+Middle Left // react-chart-editor: /default_panels/StyleTracesPanel.js:197
+Middle Right // react-chart-editor: /default_panels/StyleTracesPanel.js:199
+Miller // react-chart-editor: /components/fields/derived.js:454
+Min // react-chart-editor: /default_panels/StyleAxesPanel.js:93
+Min Contour // react-chart-editor: /default_panels/StyleTracesPanel.js:284
+Mirror Axis // react-chart-editor: /default_panels/StyleAxesPanel.js:136
+Mollweide // react-chart-editor: /components/fields/derived.js:464
+Multiple Values // react-chart-editor: /lib/constants.js:18
+Name // react-chart-editor: /components/fields/derived.js:499
+Natural Earth // react-chart-editor: /components/fields/derived.js:452
+No // react-chart-editor: /default_panels/GraphCreatePanel.js:138
+No Results // react-chart-editor: /components/widgets/Dropdown.js:75
+None // react-chart-editor: /components/fields/derived.js:545
+Normal // react-chart-editor: /default_panels/StyleLegendPanel.js:96
+North America // react-chart-editor: /components/fields/derived.js:436
+Note Text // react-chart-editor: /default_panels/StyleNotesPanel.js:23
+Notes // react-chart-editor: /DefaultEditor.js:23
+Number of Contours // react-chart-editor: /default_panels/StyleTracesPanel.js:274
+Number of Labels // react-chart-editor: /default_panels/StyleAxesPanel.js:268
+Number of Markers // react-chart-editor: /default_panels/StyleAxesPanel.js:296
+OHLC // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:111
+Off // react-chart-editor: /default_panels/StyleAxesPanel.js:140
+On // react-chart-editor: /default_panels/StyleAxesPanel.js:139
+On Hover // react-chart-editor: /default_panels/StyleTracesPanel.js:361
+Opacity // react-chart-editor: /default_panels/StyleShapesPanel.js:52
+Open // react-chart-editor: /default_panels/GraphCreatePanel.js:58
+Options // react-chart-editor: /default_panels/GraphCreatePanel.js:102
Orbital rotation // plotly.js: components/modebar/buttons.js:276
-Order // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:99
-Orientation // react-plotly.js-editor: /default_panels/StyleLegendPanel.js:83
-Orthographic // react-plotly.js-editor: /components/fields/derived.js:451
-Outside // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:288
-Overlay // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:63
-Padding // react-plotly.js-editor: /default_panels/StyleColorbarsPanel.js:98
+Order // react-chart-editor: /default_panels/GraphCreatePanel.js:99
+Orientation // react-chart-editor: /default_panels/StyleLegendPanel.js:83
+Orthographic // react-chart-editor: /components/fields/derived.js:451
+Outside // react-chart-editor: /default_panels/StyleAxesPanel.js:288
+Overlay // react-chart-editor: /default_panels/StyleAxesPanel.js:63
+Padding // react-chart-editor: /default_panels/StyleColorbarsPanel.js:98
Pan // plotly.js: components/modebar/buttons.js:94
-Parallel Coordinates // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:87
-Pie // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:39
-Pixels // react-plotly.js-editor: /default_panels/StyleColorbarsPanel.js:58
-Plot Background // react-plotly.js-editor: /default_panels/StyleLayoutPanel.js:29
-Point Cloud // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:79
-Points // react-plotly.js-editor: /components/containers/TraceMarkerSection.js:22
-Polar Scatter // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:119
-Position // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:126
-Positioning // react-plotly.js-editor: /default_panels/StyleLegendPanel.js:41
-Positioning Anchor // react-plotly.js-editor: /default_panels/StyleColorbarsPanel.js:76
-Prefix // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:222
-Previous X // react-plotly.js-editor: /components/fields/derived.js:549
-Previous Y // react-plotly.js-editor: /components/fields/derived.js:548
+Parallel Coordinates // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:87
+Pie // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:39
+Pixels // react-chart-editor: /default_panels/StyleColorbarsPanel.js:58
+Plot Background // react-chart-editor: /default_panels/StyleLayoutPanel.js:29
+Point Cloud // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:79
+Points // react-chart-editor: /components/containers/TraceMarkerSection.js:22
+Polar Scatter // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:119
+Position // react-chart-editor: /default_panels/StyleAxesPanel.js:126
+Positioning // react-chart-editor: /default_panels/StyleLegendPanel.js:41
+Positioning Anchor // react-chart-editor: /default_panels/StyleColorbarsPanel.js:76
+Prefix // react-chart-editor: /default_panels/StyleAxesPanel.js:222
+Previous X // react-chart-editor: /components/fields/derived.js:549
+Previous Y // react-chart-editor: /components/fields/derived.js:548
Produced with Plotly // plotly.js: components/modebar/modebar.js:256
-Projection // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:126
-Range // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:84
-Range Slider // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:311
-Rectangle // react-plotly.js-editor: /default_panels/StyleShapesPanel.js:29
-Relative To // react-plotly.js-editor: /default_panels/StyleImagesPanel.js:51
-Relative to // react-plotly.js-editor: /default_panels/StyleShapesPanel.js:35
+Projection // react-chart-editor: /default_panels/GraphCreatePanel.js:126
+Range // react-chart-editor: /default_panels/StyleAxesPanel.js:84
+Range Slider // react-chart-editor: /default_panels/StyleAxesPanel.js:311
+Rectangle // react-chart-editor: /default_panels/StyleShapesPanel.js:29
+Relative To // react-chart-editor: /default_panels/StyleImagesPanel.js:51
+Relative to // react-chart-editor: /default_panels/StyleShapesPanel.js:35
Reset // plotly.js: components/modebar/buttons.js:432
Reset axes // plotly.js: components/modebar/buttons.js:148
Reset camera to default // plotly.js: components/modebar/buttons.js:314
Reset camera to last save // plotly.js: components/modebar/buttons.js:322
Reset view // plotly.js: components/modebar/buttons.js:581
Reset views // plotly.js: components/modebar/buttons.js:529
-Reversed // react-plotly.js-editor: /default_panels/StyleLegendPanel.js:97
-Rich Text // react-plotly.js-editor: /components/widgets/text_editors/MultiFormat.js:25
-Rich text is incompatible with LaTeX. // react-plotly.js-editor: /components/widgets/text_editors/MultiFormat.js:121
-Right // react-plotly.js-editor: /components/fields/derived.js:90
-Robinson // react-plotly.js-editor: /components/fields/derived.js:455
-Roughness // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:292
-Sankey // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:91
-Satellite Map // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:142
-Scale // react-plotly.js-editor: /default_panels/StyleNotesPanel.js:41
-Scatter // react-plotly.js-editor: /components/fields/TraceSelector.js:59
-Scatter GL // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:75
-Select an Option // react-plotly.js-editor: /components/widgets/Dropdown.js:66
-Selection // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:85
-Shape // react-plotly.js-editor: /components/containers/ShapeAccordion.js:23
-Shapes // react-plotly.js-editor: /DefaultEditor.js:27
-Show // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:118
-Show Contour // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:368
-Show Sides // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:360
+Reversed // react-chart-editor: /default_panels/StyleLegendPanel.js:97
+Rich Text // react-chart-editor: /components/widgets/text_editors/MultiFormat.js:25
+Rich text is incompatible with LaTeX. // react-chart-editor: /components/widgets/text_editors/MultiFormat.js:121
+Right // react-chart-editor: /components/fields/derived.js:90
+Robinson // react-chart-editor: /components/fields/derived.js:455
+Roughness // react-chart-editor: /default_panels/StyleTracesPanel.js:292
+Sankey // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:91
+Satellite Map // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:142
+Scale // react-chart-editor: /default_panels/StyleNotesPanel.js:41
+Scatter // react-chart-editor: /components/fields/TraceSelector.js:59
+Scatter GL // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:75
+Select an Option // react-chart-editor: /components/widgets/Dropdown.js:66
+Selection // react-chart-editor: /default_panels/StyleAxesPanel.js:85
+Shape // react-chart-editor: /components/containers/ShapeAccordion.js:23
+Shapes // react-chart-editor: /DefaultEditor.js:27
+Show // react-chart-editor: /default_panels/StyleAxesPanel.js:118
+Show Contour // react-chart-editor: /default_panels/StyleTracesPanel.js:368
+Show Sides // react-chart-editor: /default_panels/StyleAxesPanel.js:360
Show closest data on hover // plotly.js: components/modebar/buttons.js:157
-Side // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:80
-Simple // react-plotly.js-editor: /lib/traceTypes.js:9
-Sinusoidal // react-plotly.js-editor: /components/fields/derived.js:469
-Size // react-plotly.js-editor: /default_panels/StyleColorbarsPanel.js:51
-Size and Positioning // react-plotly.js-editor: /default_panels/StyleColorbarsPanel.js:50
-Size and Spacing // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:145
+Side // react-chart-editor: /default_panels/StyleAxesPanel.js:80
+Simple // react-chart-editor: /lib/traceTypes.js:9
+Sinusoidal // react-chart-editor: /components/fields/derived.js:469
+Size // react-chart-editor: /default_panels/StyleColorbarsPanel.js:51
+Size and Positioning // react-chart-editor: /default_panels/StyleColorbarsPanel.js:50
+Size and Spacing // react-chart-editor: /default_panels/StyleTracesPanel.js:145
Snapshot succeeded // plotly.js: components/modebar/buttons.js:66
Sorry, there was a problem downloading your snapshot! // plotly.js: components/modebar/buttons.js:69
-Source // react-plotly.js-editor: /default_panels/StyleImagesPanel.js:25
-South America // react-plotly.js-editor: /components/fields/derived.js:437
-Specialized // react-plotly.js-editor: /lib/traceTypes.js:29
-Specular // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:291
-Standard Deviation // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:353
-Start Point // react-plotly.js-editor: /default_panels/StyleShapesPanel.js:36
-Start Position // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:68
-Step Offset // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:277
-Step Size // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:278
-Stereographic // react-plotly.js-editor: /components/fields/derived.js:463
-Stretch // react-plotly.js-editor: /default_panels/StyleImagesPanel.js:33
-Style // react-plotly.js-editor: /DefaultEditor.js:21
-Suffix // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:233
-Sum // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:131
-Surface // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:59
-Symbol // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:140
-Symmetric // react-plotly.js-editor: /components/fields/ErrorBars.js:80
-Table // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:95
+Source // react-chart-editor: /default_panels/StyleImagesPanel.js:25
+South America // react-chart-editor: /components/fields/derived.js:437
+Specialized // react-chart-editor: /lib/traceTypes.js:29
+Specular // react-chart-editor: /default_panels/StyleTracesPanel.js:291
+Standard Deviation // react-chart-editor: /default_panels/StyleTracesPanel.js:353
+Start Point // react-chart-editor: /default_panels/StyleShapesPanel.js:36
+Start Position // react-chart-editor: /default_panels/StyleAxesPanel.js:68
+Step Offset // react-chart-editor: /default_panels/StyleAxesPanel.js:277
+Step Size // react-chart-editor: /default_panels/StyleAxesPanel.js:278
+Stereographic // react-chart-editor: /components/fields/derived.js:463
+Stretch // react-chart-editor: /default_panels/StyleImagesPanel.js:33
+Style // react-chart-editor: /DefaultEditor.js:21
+Suffix // react-chart-editor: /default_panels/StyleAxesPanel.js:233
+Sum // react-chart-editor: /default_panels/GraphCreatePanel.js:131
+Surface // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:59
+Symbol // react-chart-editor: /default_panels/StyleTracesPanel.js:140
+Symmetric // react-chart-editor: /components/fields/ErrorBars.js:80
+Table // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:95
Taking snapshot - this may take a few seconds // plotly.js: components/modebar/buttons.js:57
-Ternary Scatter // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:47
-Text // react-plotly.js-editor: /components/fields/derived.js:498
-Text Alignment // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:64
-Text Attributes // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:46
-Text Position // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:190
-The anchor point determines which side of the annotation's positioning coordinates refer to. // react-plotly.js-editor: /default_panels/StyleNotesPanel.js:52
-The positioning inputs are relative to the anchor points on the text box. // react-plotly.js-editor: /default_panels/StyleLegendPanel.js:46
-Thickness // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:122
-This input has multiple values associated with it. Changing this setting will override these custom inputs. // react-plotly.js-editor: /lib/constants.js:20
-This panel could not be displayed due to an error. // react-plotly.js-editor: /components/containers/Panel.js:17
-Tick Color // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:294
-Tick Labels // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:179
-Tick Markers // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:282
-Ticks // react-plotly.js-editor: /default_panels/StyleColorbarsPanel.js:212
-Timeseries // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:131
-Title // react-plotly.js-editor: /default_panels/StyleColorbarsPanel.js:30
-Title and Fonts // react-plotly.js-editor: /default_panels/StyleLayoutPanel.js:40
-Titles // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:53
-To Next // react-plotly.js-editor: /components/fields/derived.js:556
-To Self // react-plotly.js-editor: /components/fields/derived.js:555
+Ternary Scatter // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:47
+Text // react-chart-editor: /components/fields/derived.js:498
+Text Alignment // react-chart-editor: /default_panels/StyleTracesPanel.js:64
+Text Attributes // react-chart-editor: /default_panels/StyleTracesPanel.js:46
+Text Position // react-chart-editor: /default_panels/StyleTracesPanel.js:190
+The anchor point determines which side of the annotation's positioning coordinates refer to. // react-chart-editor: /default_panels/StyleNotesPanel.js:52
+The positioning inputs are relative to the anchor points on the text box. // react-chart-editor: /default_panels/StyleLegendPanel.js:46
+Thickness // react-chart-editor: /default_panels/StyleAxesPanel.js:122
+This input has multiple values associated with it. Changing this setting will override these custom inputs. // react-chart-editor: /lib/constants.js:20
+This panel could not be displayed due to an error. // react-chart-editor: /components/containers/Panel.js:17
+Tick Color // react-chart-editor: /default_panels/StyleAxesPanel.js:294
+Tick Labels // react-chart-editor: /default_panels/StyleAxesPanel.js:179
+Tick Markers // react-chart-editor: /default_panels/StyleAxesPanel.js:282
+Ticks // react-chart-editor: /default_panels/StyleColorbarsPanel.js:212
+Timeseries // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:131
+Title // react-chart-editor: /default_panels/StyleColorbarsPanel.js:30
+Title and Fonts // react-chart-editor: /default_panels/StyleLayoutPanel.js:40
+Titles // react-chart-editor: /default_panels/StyleAxesPanel.js:53
+To Next // react-chart-editor: /components/fields/derived.js:556
+To Self // react-chart-editor: /components/fields/derived.js:555
Toggle Spike Lines // plotly.js: components/modebar/buttons.js:548
Toggle show closest data on hover // plotly.js: components/modebar/buttons.js:353
-Top // react-plotly.js-editor: /components/fields/derived.js:101
-Top Center // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:195
-Top Left // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:194
-Top Right // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:196
-Trace // react-plotly.js-editor: /components/containers/TraceAccordion.js:40
-Trace Order // react-plotly.js-editor: /default_panels/StyleLegendPanel.js:92
-Traces // react-plotly.js-editor: /DefaultEditor.js:21
-Transpose // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:135
-Transverse Mercator // react-plotly.js-editor: /components/fields/derived.js:466
+Top // react-chart-editor: /components/fields/derived.js:101
+Top Center // react-chart-editor: /default_panels/StyleTracesPanel.js:195
+Top Left // react-chart-editor: /default_panels/StyleTracesPanel.js:194
+Top Right // react-chart-editor: /default_panels/StyleTracesPanel.js:196
+Trace // react-chart-editor: /components/containers/TraceAccordion.js:40
+Trace Order // react-chart-editor: /default_panels/StyleLegendPanel.js:92
+Traces // react-chart-editor: /DefaultEditor.js:21
+Transpose // react-chart-editor: /default_panels/GraphCreatePanel.js:135
+Transverse Mercator // react-chart-editor: /components/fields/derived.js:466
Turntable rotation // plotly.js: components/modebar/buttons.js:285
-Type // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:23
-Typeface // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:55
-URL // react-plotly.js-editor: /components/widgets/text_editors/RichText/LinkEditor.js:93
-USA // react-plotly.js-editor: /components/fields/derived.js:432
-USA State Abbreviations (e.g. NY) // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:114
-Value // react-plotly.js-editor: /components/fields/ErrorBars.js:107
-Value (-) // react-plotly.js-editor: /components/fields/ErrorBars.js:132
-Values // react-plotly.js-editor: /components/fields/derived.js:497
-Values Shown On Hover // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:364
-Vertex Normal // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:295
-Vertexcolor // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:105
-Vertical // react-plotly.js-editor: /default_panels/StyleLegendPanel.js:87
-Vertical Boundaries // react-plotly.js-editor: /default_panels/StyleShapesPanel.js:40
-Vertical Gaps // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:238
-Vertical Padding // react-plotly.js-editor: /default_panels/StyleColorbarsPanel.js:100
-Vertical Position // react-plotly.js-editor: /default_panels/StyleColorbarsPanel.js:86
-Vertical Positioning // react-plotly.js-editor: /default_panels/StyleColorbarsPanel.js:85
-Violin // react-plotly.js-editor: /lib/computeTraceOptionsFromSchema.js:51
-WebGL // react-plotly.js-editor: /lib/traceTypes.js:33
-Well this is embarrassing. // react-plotly.js-editor: /components/containers/Panel.js:16
-Whiskers // react-plotly.js-editor: /default_panels/StyleTracesPanel.js:156
-Width // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:98
-Winkel Tripel // react-plotly.js-editor: /components/fields/derived.js:467
-World // react-plotly.js-editor: /components/fields/derived.js:431
-X // react-plotly.js-editor: /components/fields/derived.js:489
-X = 0 // react-plotly.js-editor: /components/fields/derived.js:547
-X Position // react-plotly.js-editor: /default_panels/StyleLegendPanel.js:71
-X Values // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:33
-X Vector // react-plotly.js-editor: /default_panels/StyleNotesPanel.js:44
-Y // react-plotly.js-editor: /components/fields/derived.js:490
-Y = 0 // react-plotly.js-editor: /components/fields/derived.js:546
-Y Position // react-plotly.js-editor: /default_panels/StyleLegendPanel.js:77
-Y Values // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:41
-Y Vector // react-plotly.js-editor: /default_panels/StyleNotesPanel.js:45
-Yes // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:139
-You can style and position your axes in the Style > Axes Panel // react-plotly.js-editor: /components/fields/AxisCreator.js:172
-Your plot does not have any axes to style. // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:48
-Z // react-plotly.js-editor: /components/fields/derived.js:491
-Z Values // react-plotly.js-editor: /default_panels/GraphCreatePanel.js:50
-Zero Line // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:155
+Type // react-chart-editor: /default_panels/GraphCreatePanel.js:23
+Typeface // react-chart-editor: /default_panels/StyleAxesPanel.js:55
+URL // react-chart-editor: /components/widgets/text_editors/RichText/LinkEditor.js:93
+USA // react-chart-editor: /components/fields/derived.js:432
+USA State Abbreviations (e.g. NY) // react-chart-editor: /default_panels/GraphCreatePanel.js:114
+Value // react-chart-editor: /components/fields/ErrorBars.js:107
+Value (-) // react-chart-editor: /components/fields/ErrorBars.js:132
+Values // react-chart-editor: /components/fields/derived.js:497
+Values Shown On Hover // react-chart-editor: /default_panels/StyleTracesPanel.js:364
+Vertex Normal // react-chart-editor: /default_panels/StyleTracesPanel.js:295
+Vertexcolor // react-chart-editor: /default_panels/GraphCreatePanel.js:105
+Vertical // react-chart-editor: /default_panels/StyleLegendPanel.js:87
+Vertical Boundaries // react-chart-editor: /default_panels/StyleShapesPanel.js:40
+Vertical Gaps // react-chart-editor: /default_panels/StyleTracesPanel.js:238
+Vertical Padding // react-chart-editor: /default_panels/StyleColorbarsPanel.js:100
+Vertical Position // react-chart-editor: /default_panels/StyleColorbarsPanel.js:86
+Vertical Positioning // react-chart-editor: /default_panels/StyleColorbarsPanel.js:85
+Violin // react-chart-editor: /lib/computeTraceOptionsFromSchema.js:51
+WebGL // react-chart-editor: /lib/traceTypes.js:33
+Well this is embarrassing. // react-chart-editor: /components/containers/Panel.js:16
+Whiskers // react-chart-editor: /default_panels/StyleTracesPanel.js:156
+Width // react-chart-editor: /default_panels/GraphCreatePanel.js:98
+Winkel Tripel // react-chart-editor: /components/fields/derived.js:467
+World // react-chart-editor: /components/fields/derived.js:431
+X // react-chart-editor: /components/fields/derived.js:489
+X = 0 // react-chart-editor: /components/fields/derived.js:547
+X Position // react-chart-editor: /default_panels/StyleLegendPanel.js:71
+X Values // react-chart-editor: /default_panels/GraphCreatePanel.js:33
+X Vector // react-chart-editor: /default_panels/StyleNotesPanel.js:44
+Y // react-chart-editor: /components/fields/derived.js:490
+Y = 0 // react-chart-editor: /components/fields/derived.js:546
+Y Position // react-chart-editor: /default_panels/StyleLegendPanel.js:77
+Y Values // react-chart-editor: /default_panels/GraphCreatePanel.js:41
+Y Vector // react-chart-editor: /default_panels/StyleNotesPanel.js:45
+Yes // react-chart-editor: /default_panels/GraphCreatePanel.js:139
+You can style and position your axes in the Style > Axes Panel // react-chart-editor: /components/fields/AxisCreator.js:172
+Your plot does not have any axes to style. // react-chart-editor: /default_panels/StyleAxesPanel.js:48
+Z // react-chart-editor: /components/fields/derived.js:491
+Z Values // react-chart-editor: /default_panels/GraphCreatePanel.js:50
+Zero Line // react-chart-editor: /default_panels/StyleAxesPanel.js:155
Zoom // plotly.js: components/modebar/buttons.js:85
-Zoom Interactivity // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:340
+Zoom Interactivity // react-chart-editor: /default_panels/StyleAxesPanel.js:340
Zoom in // plotly.js: components/modebar/buttons.js:121
Zoom out // plotly.js: components/modebar/buttons.js:130
-^ // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:262
+^ // react-chart-editor: /default_panels/StyleAxesPanel.js:262
close: // plotly.js: traces/ohlc/transform.js:139
-custom // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:253
-e+6 // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:211
+custom // react-chart-editor: /default_panels/StyleAxesPanel.js:253
+e+6 // react-chart-editor: /default_panels/StyleAxesPanel.js:211
high: // plotly.js: traces/ohlc/transform.js:137
incoming flow count: // plotly.js: traces/sankey/plot.js:142
-k/M/B // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:215
-k/M/G // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:214
+k/M/B // react-chart-editor: /default_panels/StyleAxesPanel.js:215
+k/M/G // react-chart-editor: /default_panels/StyleAxesPanel.js:214
kde: // plotly.js: traces/violin/calc.js:73
lat: // plotly.js: traces/scattergeo/calc.js:48
-log // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:99
+log // react-chart-editor: /default_panels/StyleAxesPanel.js:99
lon: // plotly.js: traces/scattergeo/calc.js:49
low: // plotly.js: traces/ohlc/transform.js:138
lower fence: // plotly.js: traces/box/calc.js:141
@@ -446,7 +446,7 @@ mean ± σ:
mean: // plotly.js: traces/box/calc.js:140
median: // plotly.js: traces/box/calc.js:135
min: // plotly.js: traces/box/calc.js:136
-new text // plotly.js: plots/plots.js:321 && react-plotly.js-editor: /components/containers/AnnotationAccordion.js:38
+new text // plotly.js: plots/plots.js:321 && react-chart-editor: /components/containers/AnnotationAccordion.js:38
open: // plotly.js: traces/ohlc/transform.js:136
outgoing flow count: // plotly.js: traces/sankey/plot.js:143
q1: // plotly.js: traces/box/calc.js:137
@@ -455,6 +455,6 @@ source:
target: // plotly.js: traces/sankey/plot.js:141
trace // plotly.js: plots/plots.js:323
upper fence: // plotly.js: traces/box/calc.js:142
-x // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:249
-x10^6 // react-plotly.js-editor: /default_panels/StyleAxesPanel.js:213
-√ // react-plotly.js-editor: /components/fields/ErrorBars.js:103
\ No newline at end of file
+x // react-chart-editor: /default_panels/StyleAxesPanel.js:249
+x10^6 // react-chart-editor: /default_panels/StyleAxesPanel.js:213
+√ // react-chart-editor: /components/fields/ErrorBars.js:103
\ No newline at end of file
diff --git a/src/lib/__tests__/nestedContainerConnections-test.js b/src/lib/__tests__/nestedContainerConnections-test.js
index e154f2b4c..401a2d983 100644
--- a/src/lib/__tests__/nestedContainerConnections-test.js
+++ b/src/lib/__tests__/nestedContainerConnections-test.js
@@ -58,7 +58,7 @@ describe('Plot Connection', () => {
expect(payload).toEqual({update: {width: 11}});
});
- // see https://github.com/plotly/react-plotly.js-editor/issues/58#issuecomment-345492794
+ // see https://github.com/plotly/react-chart-editor/issues/58#issuecomment-345492794
it("can't find correct Container when Section divides Trace and Layout", () => {
const fixtureProps = fixtures.scatter({layout: {width: 10}});
const DeeplyConnectedNumeric = connectTraceToPlot(
diff --git a/src/lib/supplyLayoutPlotProps.js b/src/lib/supplyLayoutPlotProps.js
index eec0e5d8e..cfad0d877 100644
--- a/src/lib/supplyLayoutPlotProps.js
+++ b/src/lib/supplyLayoutPlotProps.js
@@ -2,7 +2,7 @@ import {unpackPlotProps, getLayoutContext} from './';
// Workaround the issue with nested layouts inside trace component.
// See:
-// https://github.com/plotly/react-plotly.js-editor/issues/58#issuecomment-345492794
+// https://github.com/plotly/react-chart-editor/issues/58#issuecomment-345492794
export default function supplyLayoutPlotProps(props, context) {
return unpackPlotProps(props, {
...context,
diff --git a/src/shame.js b/src/shame.js
index 08639656e..70a35290e 100644
--- a/src/shame.js
+++ b/src/shame.js
@@ -5,7 +5,7 @@ import {getFromId} from 'plotly.js/src/plots/cartesian/axis_ids';
import nestedProperty from 'plotly.js/src/lib/nested_property';
// Temporary fix for:
-// https://github.com/plotly/react-plotly.js-editor/issues/103
+// https://github.com/plotly/react-chart-editor/issues/103
// We should be able to remove this once the plotly.react method has
// been integrated into react-plotly.js and released:
// https://github.com/plotly/react-plotly.js/issues/2