Update index.d.ts

This commit is contained in:
Daniel Rosenwasser
2018-05-23 22:51:24 -07:00
committed by GitHub
parent 46ef3af9e6
commit 83d50e9a4c
+6 -7
View File
@@ -386,7 +386,7 @@ export interface ScatterData {
'marker.colorbar': {}; // TODO
mode: 'lines' | 'markers' | 'text' | 'lines+markers' | 'text+markers' | 'text+lines' | 'text+lines+markers' | 'none';
hoveron: 'points' | 'fills';
hoverinfo: 'all' | 'name' | 'none' | 'skip' | 'text' |
hoverinfo: 'all' | 'name' | 'none' | 'skip' | 'text' |
'x' | 'x+text' | 'x+name' |
'x+y' | 'x+y+text' | 'x+y+name' |
'x+y+z' | 'x+y+z+text' | 'x+y+z+name' |
@@ -403,12 +403,11 @@ export interface ScatterData {
connectgaps: boolean;
}
/*
Any combination of "x", "y", "z", "text", "name" joined with a "+" OR "all" or "none" or "skip".
examples: "x", "y", "x+y", "x+y+z", "all"
default: "all"
*/
/**
* Any combination of "x", "y", "z", "text", "name" joined with a "+" OR "all" or "none" or "skip".
* examples: "x", "y", "x+y", "x+y+z", "all"
* default: "all"
*/
export interface ScatterMarker {
symbol: string | string[]; // Drawing.symbolList
color: Color | number[];