Plots


Jump to API response

This endpoint handles manipulation of Plotly plot files.

Reference

Authorization


Any user with or without a Plotly account may view public plots. For private plots, see authentication.

Actions


list

Listing all public plots can be done via a GET request to this endpoint. By default, plots will be listed in order of date created. The order_by query parameter is accepted at this endpoint. Currently, only ordering by views is supported. It is possible to filter the plots by quality with min_quality or max_quality as query parameter.

Example:

// GET https://api.plotly.com/v2/plots/ ---> 200

// GET https://api.plotly.com/v2/plots/?order_by=-views ---> 200

// GET https://api.plotly.com/v2/plots/?min_quality=5 ---> 200

// GET https://api.plotly.com/v2/plots/?max_quality=5 ---> 200

feed

Listing all handpicked feed plots can be done via a GET request to this endpoint. By default, plots will be listed in a random order.

Example:

// GET https://api.plotly.com/v2/plots/feed ---> 200

create

You can create new plot resources here. The only required field is 'figure'. Currently, the figure is restricted to only contain references to grid data. That is, this will fail if raw data arrays are passed in. To create and manipulate underlying grids for plots, see the grids endpoint.

Example:

// This fails because a figure field is required.
// POST https://api.plotly.com/v2/plots ---> 400 Bad Request
{}

// This fails because the figure has raw data
//POST https://api.plotly.com/v2/plots ---> 400 Bad Request
{
    "figure": {"data": [{"y": ['this', 'is', 'raw', 'data']}]}
}

// This succeeds because the figure has src keys, not raw data.
//POST https://api.plotly.com/v2/plots ---> 200 OK
{
    "figure": {"data": [{"ysrc": "sven:88:u8nd62"}]}
}

When creating a grid, you can optionally specify a source_fid to specify where a plot has come from:

  • source_fid: the fid of a plot that was copied (and presumably edited) to produce this one

detail

There is a lot of meta information stored about plot files including filename, title, share_url, and content_url to name a few.

This information can only be reached with a GET to this endpoint.

Example:

// GET https://api.plotly.com/v2/plots/iheartgraphs:90

content

The contents of a plot can be downloaded via the content resource. The plot content contains referenced grid/column data by default. If you wish to return the raw grid/column data, the inline_data=true query must be included in the request url. The Content-Type header will be appropriately set for the response body.

Alternatively, you can set ?map_data=unreadable to append a mapping of sources to data that belongs to grids which are unreadable for the requestor. This is useful when you have read access to another users plot, but that plot contains grid references which you don't have access to.

Examples:

// Returns referenced grid/column data
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content ---> 200 OK

// Returns full grid/column data
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content?inline_data=true ---> 200 OK

// Returns full grid/column data when requestor doesn't have permission
// to read the referenced grid.
// GET https://api.plotly.com/v2/plots/iheartgraphs:90/content?map_data=unreadable ---> 200 OK

GET /v2/plots/sniper:45/?format=api
HTTP 200 OK
Allow: GET, PUT, PATCH, DELETE, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "creation_time": "2024-05-04T05:42:14.209954Z",
    "comments": {
        "results": [],
        "count": 0
    },
    "parented": true,
    "embed_url": "https://chart-studio.plotly.com/~sniper/45.embed",
    "fid": "sniper:45",
    "filename": "鼎湖门站沉降数据2024-05-04 13:42:00.947056",
    "filetype": "plot",
    "img_url": "https://storage.googleapis.com/plotly-prod-images/sniper/45/9_8PXS19R48Z5C8DSYM1GYL1VM8GK2K4.png",
    "image_urls": {
        "default": "https://storage.googleapis.com/plotly-prod-images/sniper/45/2_SW4PZIA8HTJRQCVR49ZMKU28B76Y8Y.png",
        "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sniper/45/8_TG8MK4CBNEJBR2H5F69WF8HNP2UTRH.png",
        "list-thumb": "https://storage.googleapis.com/plotly-prod-images/sniper/45/9_8PXS19R48Z5C8DSYM1GYL1VM8GK2K4.png"
    },
    "api_urls": {
        "files": "https://api.plotly.com/v2/files/sniper:45",
        "plots": "https://api.plotly.com/v2/plots/sniper:45",
        "parent": "https://api.plotly.com/v2/folders/home?user=sniper"
    },
    "owner": "sniper",
    "parent": -1,
    "preview": "",
    "referencers": [],
    "references": [],
    "title": "",
    "views": 1,
    "web_url": "https://chart-studio.plotly.com/~sniper/45/",
    "world_readable": true,
    "date_modified": "2024-05-04T07:52:02.825Z",
    "stars": {
        "results": [],
        "count": 0
    },
    "collaborators": {
        "results": [],
        "count": 0
    },
    "subfolder_count": null,
    "refresh_interval": null,
    "organize_view_url": "https://chart-studio.plotly.com/~sniper/45/",
    "current_user_permission": "read",
    "is_theme": null,
    "is_template": null,
    "autosize": true,
    "caption": "",
    "figure": {
        "data": [
            {
                "line": {
                    "dash": "solid",
                    "color": "#636efa"
                },
                "mode": "lines+markers",
                "name": "1",
                "type": "scatter",
                "xsrc": "sniper:44:b75e88",
                "ysrc": "sniper:44:124289",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "1",
                "orientation": "v",
                "hovertemplate": "variable=1<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#EF553B"
                },
                "mode": "lines+markers",
                "name": "2",
                "type": "scatter",
                "xsrc": "sniper:44:43c9fe",
                "ysrc": "sniper:44:3bdcfc",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "2",
                "orientation": "v",
                "hovertemplate": "variable=2<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#00cc96"
                },
                "mode": "lines+markers",
                "name": "3",
                "type": "scatter",
                "xsrc": "sniper:44:b1619e",
                "ysrc": "sniper:44:bbd5b3",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "3",
                "orientation": "v",
                "hovertemplate": "variable=3<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#ab63fa"
                },
                "mode": "lines+markers",
                "name": "4罩棚基础",
                "type": "scatter",
                "xsrc": "sniper:44:dd4f05",
                "ysrc": "sniper:44:37000b",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "4罩棚基础",
                "orientation": "v",
                "hovertemplate": "variable=4罩棚基础<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#FFA15A"
                },
                "mode": "lines+markers",
                "name": "5",
                "type": "scatter",
                "xsrc": "sniper:44:2e03f5",
                "ysrc": "sniper:44:425fbb",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "5",
                "orientation": "v",
                "hovertemplate": "variable=5<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#19d3f3"
                },
                "mode": "lines+markers",
                "name": "6罩棚基础",
                "type": "scatter",
                "xsrc": "sniper:44:f538c3",
                "ysrc": "sniper:44:3c8ae7",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "6罩棚基础",
                "orientation": "v",
                "hovertemplate": "variable=6罩棚基础<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#FF6692"
                },
                "mode": "lines+markers",
                "name": "7",
                "type": "scatter",
                "xsrc": "sniper:44:73e4d5",
                "ysrc": "sniper:44:c6dc33",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "7",
                "orientation": "v",
                "hovertemplate": "variable=7<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#B6E880"
                },
                "mode": "lines+markers",
                "name": "8罩棚基础",
                "type": "scatter",
                "xsrc": "sniper:44:901072",
                "ysrc": "sniper:44:359388",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "8罩棚基础",
                "orientation": "v",
                "hovertemplate": "variable=8罩棚基础<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#FF97FF"
                },
                "mode": "lines+markers",
                "name": "9",
                "type": "scatter",
                "xsrc": "sniper:44:08755d",
                "ysrc": "sniper:44:96e8f1",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "9",
                "orientation": "v",
                "hovertemplate": "variable=9<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#FECB52"
                },
                "mode": "lines+markers",
                "name": "10",
                "type": "scatter",
                "xsrc": "sniper:44:38587c",
                "ysrc": "sniper:44:a9618f",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "10",
                "orientation": "v",
                "hovertemplate": "variable=10<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#636efa"
                },
                "mode": "lines+markers",
                "name": "11",
                "type": "scatter",
                "xsrc": "sniper:44:84d888",
                "ysrc": "sniper:44:f8c60e",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "11",
                "orientation": "v",
                "hovertemplate": "variable=11<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#EF553B"
                },
                "mode": "lines+markers",
                "name": "12罩棚基础",
                "type": "scatter",
                "xsrc": "sniper:44:53987d",
                "ysrc": "sniper:44:dd8d99",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "12罩棚基础",
                "orientation": "v",
                "hovertemplate": "variable=12罩棚基础<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#00cc96"
                },
                "mode": "lines+markers",
                "name": "13",
                "type": "scatter",
                "xsrc": "sniper:44:b95458",
                "ysrc": "sniper:44:e56e79",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "13",
                "orientation": "v",
                "hovertemplate": "variable=13<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#ab63fa"
                },
                "mode": "lines+markers",
                "name": "14罩棚基础",
                "type": "scatter",
                "xsrc": "sniper:44:db8642",
                "ysrc": "sniper:44:a6ad11",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "14罩棚基础",
                "orientation": "v",
                "hovertemplate": "variable=14罩棚基础<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#FFA15A"
                },
                "mode": "lines+markers",
                "name": "15",
                "type": "scatter",
                "xsrc": "sniper:44:f4c79a",
                "ysrc": "sniper:44:59067a",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "15",
                "orientation": "v",
                "hovertemplate": "variable=15<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#19d3f3"
                },
                "mode": "lines+markers",
                "name": "16",
                "type": "scatter",
                "xsrc": "sniper:44:43e2a6",
                "ysrc": "sniper:44:f89216",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "16",
                "orientation": "v",
                "hovertemplate": "variable=16<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#FF6692"
                },
                "mode": "lines+markers",
                "name": "17",
                "type": "scatter",
                "xsrc": "sniper:44:3d1842",
                "ysrc": "sniper:44:1af754",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "17",
                "orientation": "v",
                "hovertemplate": "variable=17<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#B6E880"
                },
                "mode": "lines+markers",
                "name": "18",
                "type": "scatter",
                "xsrc": "sniper:44:a8530f",
                "ysrc": "sniper:44:195afd",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "18",
                "orientation": "v",
                "hovertemplate": "variable=18<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#FF97FF"
                },
                "mode": "lines+markers",
                "name": "19",
                "type": "scatter",
                "xsrc": "sniper:44:8bad26",
                "ysrc": "sniper:44:56aca3",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "19",
                "orientation": "v",
                "hovertemplate": "variable=19<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#FECB52"
                },
                "mode": "lines+markers",
                "name": "20",
                "type": "scatter",
                "xsrc": "sniper:44:e1e250",
                "ysrc": "sniper:44:c3e777",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "20",
                "orientation": "v",
                "hovertemplate": "variable=20<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#636efa"
                },
                "mode": "lines+markers",
                "name": "21",
                "type": "scatter",
                "xsrc": "sniper:44:11dc10",
                "ysrc": "sniper:44:80167b",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "21",
                "orientation": "v",
                "hovertemplate": "variable=21<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#EF553B"
                },
                "mode": "lines+markers",
                "name": "22罩棚基础",
                "type": "scatter",
                "xsrc": "sniper:44:0e6435",
                "ysrc": "sniper:44:f2d7f3",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "22罩棚基础",
                "orientation": "v",
                "hovertemplate": "variable=22罩棚基础<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#00cc96"
                },
                "mode": "lines+markers",
                "name": "23",
                "type": "scatter",
                "xsrc": "sniper:44:955fb0",
                "ysrc": "sniper:44:e4439e",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "23",
                "orientation": "v",
                "hovertemplate": "variable=23<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#ab63fa"
                },
                "mode": "lines+markers",
                "name": "24",
                "type": "scatter",
                "xsrc": "sniper:44:48e5c9",
                "ysrc": "sniper:44:5d85d7",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "24",
                "orientation": "v",
                "hovertemplate": "variable=24<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#FFA15A"
                },
                "mode": "lines+markers",
                "name": "25",
                "type": "scatter",
                "xsrc": "sniper:44:bf4f92",
                "ysrc": "sniper:44:2e91c9",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "25",
                "orientation": "v",
                "hovertemplate": "variable=25<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#19d3f3"
                },
                "mode": "lines+markers",
                "name": "26",
                "type": "scatter",
                "xsrc": "sniper:44:3d5853",
                "ysrc": "sniper:44:adc5a4",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "26",
                "orientation": "v",
                "hovertemplate": "variable=26<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#FF6692"
                },
                "mode": "lines+markers",
                "name": "27",
                "type": "scatter",
                "xsrc": "sniper:44:1ee2f4",
                "ysrc": "sniper:44:8ed71d",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "27",
                "orientation": "v",
                "hovertemplate": "variable=27<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#B6E880"
                },
                "mode": "lines+markers",
                "name": "28",
                "type": "scatter",
                "xsrc": "sniper:44:1049c1",
                "ysrc": "sniper:44:f37b7c",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "28",
                "orientation": "v",
                "hovertemplate": "variable=28<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#FF97FF"
                },
                "mode": "lines+markers",
                "name": "29",
                "type": "scatter",
                "xsrc": "sniper:44:e31fa1",
                "ysrc": "sniper:44:a5b267",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "29",
                "orientation": "v",
                "hovertemplate": "variable=29<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#FECB52"
                },
                "mode": "lines+markers",
                "name": "30",
                "type": "scatter",
                "xsrc": "sniper:44:ef67b3",
                "ysrc": "sniper:44:ad47fd",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "30",
                "orientation": "v",
                "hovertemplate": "variable=30<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#636efa"
                },
                "mode": "lines+markers",
                "name": "31",
                "type": "scatter",
                "xsrc": "sniper:44:ee5da8",
                "ysrc": "sniper:44:83a64d",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "31",
                "orientation": "v",
                "hovertemplate": "variable=31<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#EF553B"
                },
                "mode": "lines+markers",
                "name": "32",
                "type": "scatter",
                "xsrc": "sniper:44:83bf25",
                "ysrc": "sniper:44:f77b97",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "32",
                "orientation": "v",
                "hovertemplate": "variable=32<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#00cc96"
                },
                "mode": "lines+markers",
                "name": "33",
                "type": "scatter",
                "xsrc": "sniper:44:1cb21a",
                "ysrc": "sniper:44:ab68d3",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "33",
                "orientation": "v",
                "hovertemplate": "variable=33<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#ab63fa"
                },
                "mode": "lines+markers",
                "name": "34",
                "type": "scatter",
                "xsrc": "sniper:44:cbcd01",
                "ysrc": "sniper:44:29493a",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "34",
                "orientation": "v",
                "hovertemplate": "variable=34<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#FFA15A"
                },
                "mode": "lines+markers",
                "name": "35",
                "type": "scatter",
                "xsrc": "sniper:44:9b1383",
                "ysrc": "sniper:44:5c016b",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "35",
                "orientation": "v",
                "hovertemplate": "variable=35<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#19d3f3"
                },
                "mode": "lines+markers",
                "name": "36",
                "type": "scatter",
                "xsrc": "sniper:44:832937",
                "ysrc": "sniper:44:18ea15",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "36",
                "orientation": "v",
                "hovertemplate": "variable=36<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#FF6692"
                },
                "mode": "lines+markers",
                "name": "37",
                "type": "scatter",
                "xsrc": "sniper:44:2292d6",
                "ysrc": "sniper:44:38f8b9",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "37",
                "orientation": "v",
                "hovertemplate": "variable=37<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#B6E880"
                },
                "mode": "lines+markers",
                "name": "38",
                "type": "scatter",
                "xsrc": "sniper:44:c8122f",
                "ysrc": "sniper:44:ef2e8d",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "38",
                "orientation": "v",
                "hovertemplate": "variable=38<br>日期=%{x}<br>value=%{y}<extra></extra>"
            },
            {
                "line": {
                    "dash": "solid",
                    "color": "#FF97FF"
                },
                "mode": "lines+markers",
                "name": "39",
                "type": "scatter",
                "xsrc": "sniper:44:d14793",
                "ysrc": "sniper:44:ae3be9",
                "xaxis": "x",
                "yaxis": "y",
                "marker": {
                    "symbol": "circle"
                },
                "showlegend": true,
                "legendgroup": "39",
                "orientation": "v",
                "hovertemplate": "variable=39<br>日期=%{x}<br>value=%{y}<extra></extra>"
            }
        ],
        "layout": {
            "title": {
                "text": "鼎湖门站沉降观测数据"
            },
            "width": 2000,
            "xaxis": {
                "title": {
                    "text": "观测日期"
                },
                "anchor": "y",
                "domain": [
                    0.0,
                    1.0
                ]
            },
            "yaxis": {
                "title": {
                    "text": "累计沉降量(mm)"
                },
                "anchor": "x",
                "domain": [
                    0.0,
                    1.0
                ]
            },
            "height": 1000,
            "legend": {
                "title": {
                    "text": "variable"
                },
                "tracegroupgap": 0
            },
            "margin": {
                "t": 60
            },
            "template": {
                "data": {
                    "bar": [
                        {
                            "type": "bar",
                            "marker": {
                                "line": {
                                    "color": "#E5ECF6",
                                    "width": 0.5
                                },
                                "pattern": {
                                    "size": 10,
                                    "fillmode": "overlay",
                                    "solidity": 0.2
                                }
                            },
                            "error_x": {
                                "color": "#2a3f5f"
                            },
                            "error_y": {
                                "color": "#2a3f5f"
                            }
                        }
                    ],
                    "pie": [
                        {
                            "type": "pie",
                            "automargin": true
                        }
                    ],
                    "table": [
                        {
                            "type": "table",
                            "cells": {
                                "fill": {
                                    "color": "#EBF0F8"
                                },
                                "line": {
                                    "color": "white"
                                }
                            },
                            "header": {
                                "fill": {
                                    "color": "#C8D4E3"
                                },
                                "line": {
                                    "color": "white"
                                }
                            }
                        }
                    ],
                    "carpet": [
                        {
                            "type": "carpet",
                            "aaxis": {
                                "gridcolor": "white",
                                "linecolor": "white",
                                "endlinecolor": "#2a3f5f",
                                "minorgridcolor": "white",
                                "startlinecolor": "#2a3f5f"
                            },
                            "baxis": {
                                "gridcolor": "white",
                                "linecolor": "white",
                                "endlinecolor": "#2a3f5f",
                                "minorgridcolor": "white",
                                "startlinecolor": "#2a3f5f"
                            }
                        }
                    ],
                    "mesh3d": [
                        {
                            "type": "mesh3d",
                            "colorbar": {
                                "ticks": "",
                                "outlinewidth": 0
                            }
                        }
                    ],
                    "contour": [
                        {
                            "type": "contour",
                            "colorbar": {
                                "ticks": "",
                                "outlinewidth": 0
                            },
                            "colorscale": [
                                [
                                    0.0,
                                    "#0d0887"
                                ],
                                [
                                    0.1111111111111111,
                                    "#46039f"
                                ],
                                [
                                    0.2222222222222222,
                                    "#7201a8"
                                ],
                                [
                                    0.3333333333333333,
                                    "#9c179e"
                                ],
                                [
                                    0.4444444444444444,
                                    "#bd3786"
                                ],
                                [
                                    0.5555555555555556,
                                    "#d8576b"
                                ],
                                [
                                    0.6666666666666666,
                                    "#ed7953"
                                ],
                                [
                                    0.7777777777777778,
                                    "#fb9f3a"
                                ],
                                [
                                    0.8888888888888888,
                                    "#fdca26"
                                ],
                                [
                                    1.0,
                                    "#f0f921"
                                ]
                            ]
                        }
                    ],
                    "heatmap": [
                        {
                            "type": "heatmap",
                            "colorbar": {
                                "ticks": "",
                                "outlinewidth": 0
                            },
                            "colorscale": [
                                [
                                    0.0,
                                    "#0d0887"
                                ],
                                [
                                    0.1111111111111111,
                                    "#46039f"
                                ],
                                [
                                    0.2222222222222222,
                                    "#7201a8"
                                ],
                                [
                                    0.3333333333333333,
                                    "#9c179e"
                                ],
                                [
                                    0.4444444444444444,
                                    "#bd3786"
                                ],
                                [
                                    0.5555555555555556,
                                    "#d8576b"
                                ],
                                [
                                    0.6666666666666666,
                                    "#ed7953"
                                ],
                                [
                                    0.7777777777777778,
                                    "#fb9f3a"
                                ],
                                [
                                    0.8888888888888888,
                                    "#fdca26"
                                ],
                                [
                                    1.0,
                                    "#f0f921"
                                ]
                            ]
                        }
                    ],
                    "scatter": [
                        {
                            "type": "scatter",
                            "fillpattern": {
                                "size": 10,
                                "fillmode": "overlay",
                                "solidity": 0.2
                            }
                        }
                    ],
                    "surface": [
                        {
                            "type": "surface",
                            "colorbar": {
                                "ticks": "",
                                "outlinewidth": 0
                            },
                            "colorscale": [
                                [
                                    0.0,
                                    "#0d0887"
                                ],
                                [
                                    0.1111111111111111,
                                    "#46039f"
                                ],
                                [
                                    0.2222222222222222,
                                    "#7201a8"
                                ],
                                [
                                    0.3333333333333333,
                                    "#9c179e"
                                ],
                                [
                                    0.4444444444444444,
                                    "#bd3786"
                                ],
                                [
                                    0.5555555555555556,
                                    "#d8576b"
                                ],
                                [
                                    0.6666666666666666,
                                    "#ed7953"
                                ],
                                [
                                    0.7777777777777778,
                                    "#fb9f3a"
                                ],
                                [
                                    0.8888888888888888,
                                    "#fdca26"
                                ],
                                [
                                    1.0,
                                    "#f0f921"
                                ]
                            ]
                        }
                    ],
                    "barpolar": [
                        {
                            "type": "barpolar",
                            "marker": {
                                "line": {
                                    "color": "#E5ECF6",
                                    "width": 0.5
                                },
                                "pattern": {
                                    "size": 10,
                                    "fillmode": "overlay",
                                    "solidity": 0.2
                                }
                            }
                        }
                    ],
                    "heatmapgl": [
                        {
                            "type": "heatmapgl",
                            "colorbar": {
                                "ticks": "",
                                "outlinewidth": 0
                            },
                            "colorscale": [
                                [
                                    0.0,
                                    "#0d0887"
                                ],
                                [
                                    0.1111111111111111,
                                    "#46039f"
                                ],
                                [
                                    0.2222222222222222,
                                    "#7201a8"
                                ],
                                [
                                    0.3333333333333333,
                                    "#9c179e"
                                ],
                                [
                                    0.4444444444444444,
                                    "#bd3786"
                                ],
                                [
                                    0.5555555555555556,
                                    "#d8576b"
                                ],
                                [
                                    0.6666666666666666,
                                    "#ed7953"
                                ],
                                [
                                    0.7777777777777778,
                                    "#fb9f3a"
                                ],
                                [
                                    0.8888888888888888,
                                    "#fdca26"
                                ],
                                [
                                    1.0,
                                    "#f0f921"
                                ]
                            ]
                        }
                    ],
                    "histogram": [
                        {
                            "type": "histogram",
                            "marker": {
                                "pattern": {
                                    "size": 10,
                                    "fillmode": "overlay",
                                    "solidity": 0.2
                                }
                            }
                        }
                    ],
                    "parcoords": [
                        {
                            "line": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "type": "parcoords"
                        }
                    ],
                    "scatter3d": [
                        {
                            "line": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            },
                            "type": "scatter3d",
                            "marker": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "scattergl": [
                        {
                            "type": "scattergl",
                            "marker": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "choropleth": [
                        {
                            "type": "choropleth",
                            "colorbar": {
                                "ticks": "",
                                "outlinewidth": 0
                            }
                        }
                    ],
                    "scattergeo": [
                        {
                            "type": "scattergeo",
                            "marker": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "histogram2d": [
                        {
                            "type": "histogram2d",
                            "colorbar": {
                                "ticks": "",
                                "outlinewidth": 0
                            },
                            "colorscale": [
                                [
                                    0.0,
                                    "#0d0887"
                                ],
                                [
                                    0.1111111111111111,
                                    "#46039f"
                                ],
                                [
                                    0.2222222222222222,
                                    "#7201a8"
                                ],
                                [
                                    0.3333333333333333,
                                    "#9c179e"
                                ],
                                [
                                    0.4444444444444444,
                                    "#bd3786"
                                ],
                                [
                                    0.5555555555555556,
                                    "#d8576b"
                                ],
                                [
                                    0.6666666666666666,
                                    "#ed7953"
                                ],
                                [
                                    0.7777777777777778,
                                    "#fb9f3a"
                                ],
                                [
                                    0.8888888888888888,
                                    "#fdca26"
                                ],
                                [
                                    1.0,
                                    "#f0f921"
                                ]
                            ]
                        }
                    ],
                    "scatterpolar": [
                        {
                            "type": "scatterpolar",
                            "marker": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "contourcarpet": [
                        {
                            "type": "contourcarpet",
                            "colorbar": {
                                "ticks": "",
                                "outlinewidth": 0
                            }
                        }
                    ],
                    "scattercarpet": [
                        {
                            "type": "scattercarpet",
                            "marker": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "scattermapbox": [
                        {
                            "type": "scattermapbox",
                            "marker": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "scatterpolargl": [
                        {
                            "type": "scatterpolargl",
                            "marker": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "scatterternary": [
                        {
                            "type": "scatterternary",
                            "marker": {
                                "colorbar": {
                                    "ticks": "",
                                    "outlinewidth": 0
                                }
                            }
                        }
                    ],
                    "histogram2dcontour": [
                        {
                            "type": "histogram2dcontour",
                            "colorbar": {
                                "ticks": "",
                                "outlinewidth": 0
                            },
                            "colorscale": [
                                [
                                    0.0,
                                    "#0d0887"
                                ],
                                [
                                    0.1111111111111111,
                                    "#46039f"
                                ],
                                [
                                    0.2222222222222222,
                                    "#7201a8"
                                ],
                                [
                                    0.3333333333333333,
                                    "#9c179e"
                                ],
                                [
                                    0.4444444444444444,
                                    "#bd3786"
                                ],
                                [
                                    0.5555555555555556,
                                    "#d8576b"
                                ],
                                [
                                    0.6666666666666666,
                                    "#ed7953"
                                ],
                                [
                                    0.7777777777777778,
                                    "#fb9f3a"
                                ],
                                [
                                    0.8888888888888888,
                                    "#fdca26"
                                ],
                                [
                                    1.0,
                                    "#f0f921"
                                ]
                            ]
                        }
                    ]
                },
                "layout": {
                    "geo": {
                        "bgcolor": "white",
                        "showland": true,
                        "lakecolor": "white",
                        "landcolor": "#E5ECF6",
                        "showlakes": true,
                        "subunitcolor": "white"
                    },
                    "font": {
                        "color": "#2a3f5f"
                    },
                    "polar": {
                        "bgcolor": "#E5ECF6",
                        "radialaxis": {
                            "ticks": "",
                            "gridcolor": "white",
                            "linecolor": "white"
                        },
                        "angularaxis": {
                            "ticks": "",
                            "gridcolor": "white",
                            "linecolor": "white"
                        }
                    },
                    "scene": {
                        "xaxis": {
                            "ticks": "",
                            "gridcolor": "white",
                            "gridwidth": 2,
                            "linecolor": "white",
                            "zerolinecolor": "white",
                            "showbackground": true,
                            "backgroundcolor": "#E5ECF6"
                        },
                        "yaxis": {
                            "ticks": "",
                            "gridcolor": "white",
                            "gridwidth": 2,
                            "linecolor": "white",
                            "zerolinecolor": "white",
                            "showbackground": true,
                            "backgroundcolor": "#E5ECF6"
                        },
                        "zaxis": {
                            "ticks": "",
                            "gridcolor": "white",
                            "gridwidth": 2,
                            "linecolor": "white",
                            "zerolinecolor": "white",
                            "showbackground": true,
                            "backgroundcolor": "#E5ECF6"
                        }
                    },
                    "title": {
                        "x": 0.05
                    },
                    "xaxis": {
                        "ticks": "",
                        "title": {
                            "standoff": 15
                        },
                        "gridcolor": "white",
                        "linecolor": "white",
                        "automargin": true,
                        "zerolinecolor": "white",
                        "zerolinewidth": 2
                    },
                    "yaxis": {
                        "ticks": "",
                        "title": {
                            "standoff": 15
                        },
                        "gridcolor": "white",
                        "linecolor": "white",
                        "automargin": true,
                        "zerolinecolor": "white",
                        "zerolinewidth": 2
                    },
                    "mapbox": {
                        "style": "light"
                    },
                    "ternary": {
                        "aaxis": {
                            "ticks": "",
                            "gridcolor": "white",
                            "linecolor": "white"
                        },
                        "baxis": {
                            "ticks": "",
                            "gridcolor": "white",
                            "linecolor": "white"
                        },
                        "caxis": {
                            "ticks": "",
                            "gridcolor": "white",
                            "linecolor": "white"
                        },
                        "bgcolor": "#E5ECF6"
                    },
                    "colorway": [
                        "#636efa",
                        "#EF553B",
                        "#00cc96",
                        "#ab63fa",
                        "#FFA15A",
                        "#19d3f3",
                        "#FF6692",
                        "#B6E880",
                        "#FF97FF",
                        "#FECB52"
                    ],
                    "coloraxis": {
                        "colorbar": {
                            "ticks": "",
                            "outlinewidth": 0
                        }
                    },
                    "hovermode": "closest",
                    "colorscale": {
                        "diverging": [
                            [
                                0,
                                "#8e0152"
                            ],
                            [
                                0.1,
                                "#c51b7d"
                            ],
                            [
                                0.2,
                                "#de77ae"
                            ],
                            [
                                0.3,
                                "#f1b6da"
                            ],
                            [
                                0.4,
                                "#fde0ef"
                            ],
                            [
                                0.5,
                                "#f7f7f7"
                            ],
                            [
                                0.6,
                                "#e6f5d0"
                            ],
                            [
                                0.7,
                                "#b8e186"
                            ],
                            [
                                0.8,
                                "#7fbc41"
                            ],
                            [
                                0.9,
                                "#4d9221"
                            ],
                            [
                                1,
                                "#276419"
                            ]
                        ],
                        "sequential": [
                            [
                                0.0,
                                "#0d0887"
                            ],
                            [
                                0.1111111111111111,
                                "#46039f"
                            ],
                            [
                                0.2222222222222222,
                                "#7201a8"
                            ],
                            [
                                0.3333333333333333,
                                "#9c179e"
                            ],
                            [
                                0.4444444444444444,
                                "#bd3786"
                            ],
                            [
                                0.5555555555555556,
                                "#d8576b"
                            ],
                            [
                                0.6666666666666666,
                                "#ed7953"
                            ],
                            [
                                0.7777777777777778,
                                "#fb9f3a"
                            ],
                            [
                                0.8888888888888888,
                                "#fdca26"
                            ],
                            [
                                1.0,
                                "#f0f921"
                            ]
                        ],
                        "sequentialminus": [
                            [
                                0.0,
                                "#0d0887"
                            ],
                            [
                                0.1111111111111111,
                                "#46039f"
                            ],
                            [
                                0.2222222222222222,
                                "#7201a8"
                            ],
                            [
                                0.3333333333333333,
                                "#9c179e"
                            ],
                            [
                                0.4444444444444444,
                                "#bd3786"
                            ],
                            [
                                0.5555555555555556,
                                "#d8576b"
                            ],
                            [
                                0.6666666666666666,
                                "#ed7953"
                            ],
                            [
                                0.7777777777777778,
                                "#fb9f3a"
                            ],
                            [
                                0.8888888888888888,
                                "#fdca26"
                            ],
                            [
                                1.0,
                                "#f0f921"
                            ]
                        ]
                    },
                    "hoverlabel": {
                        "align": "left"
                    },
                    "plot_bgcolor": "#E5ECF6",
                    "paper_bgcolor": "white",
                    "shapedefaults": {
                        "line": {
                            "color": "#2a3f5f"
                        }
                    },
                    "autotypenumbers": "strict",
                    "annotationdefaults": {
                        "arrowhead": 0,
                        "arrowcolor": "#2a3f5f",
                        "arrowwidth": 1
                    }
                }
            }
        }
    },
    "height": 1000,
    "width": 2000,
    "user": {
        "profile_url": "https://chart-studio.plotly.com/~sniper",
        "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/7.jpg",
        "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
        "bio": "",
        "nickname": "",
        "website": "",
        "stream_tokens": null,
        "feature_set_id": null,
        "csrf_token": null,
        "date_joined": "2024-05-03 06:33:21",
        "mapbox_access_tokens": null,
        "has_password": null,
        "username": "sniper",
        "email": null,
        "is_active": null,
        "readonly": null,
        "is_dash_creator": null,
        "dash_created_count": null,
        "is_chart_creator": null,
        "charts_created_count": null
    }
}