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?cursor=cD0yMDE5LTA2LTE3KzIwJTNBMjYlM0EyNC4zMTU3ODYlMkIwMCUzQTAw&format=api
HTTP 200 OK
Allow: GET, POST, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://api.plot.ly/v2/plots?cursor=cD0yMDE5LTA2LTE3KzIwJTNBMTMlM0EyOC45MTMyNjAlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots?cursor=cj0xJnA9MjAxOS0wNi0xNysyMCUzQTI0JTNBNTAuNzAyMDkzJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2019-06-17T20:24:50.702093Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~fporrata/8.embed",
            "fid": "fporrata:8",
            "filename": "Time Series with Rangeslider",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/fporrata:8/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/fporrata:8/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/fporrata:8/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/fporrata:8/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/fporrata:8",
                "plots": "https://api.plotly.com/v2/plots/fporrata:8",
                "parent": "https://api.plotly.com/v2/folders/home?user=fporrata"
            },
            "owner": "fporrata",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Time Series with Rangeslider",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~fporrata/8/time-series-with-rangeslider/",
            "world_readable": true,
            "date_modified": "2019-06-17T20:24:51.158Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~fporrata/8/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "b23787a5-0843-440d-b853-9bad9a07d420",
                        "line": {
                            "color": "#17BECF"
                        },
                        "name": "AAPL High",
                        "type": "scatter",
                        "xsrc": "fporrata:9:cfd577",
                        "ysrc": "fporrata:9:55952d",
                        "opacity": 0.8
                    },
                    {
                        "uid": "d6ef6011-550c-489a-8d10-5f632e25aa4c",
                        "line": {
                            "color": "#7F7F7F"
                        },
                        "name": "AAPL Low",
                        "type": "scatter",
                        "xsrc": "fporrata:9:cfd577",
                        "ysrc": "fporrata:9:39a651",
                        "opacity": 0.8
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Time Series with Rangeslider"
                    },
                    "xaxis": {
                        "type": "date",
                        "rangeslider": {
                            "visible": true
                        },
                        "rangeselector": {
                            "buttons": [
                                {
                                    "step": "month",
                                    "count": 1,
                                    "label": "1m",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "month",
                                    "count": 6,
                                    "label": "6m",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "all"
                                }
                            ]
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~fporrata",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/89.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 18:45:31",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "fporrata",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T20:24:35.346698Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~slodowiczsz/0.embed",
            "fid": "slodowiczsz:0",
            "filename": "basic-line",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/slodowiczsz:0/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/slodowiczsz:0/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/slodowiczsz:0/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/slodowiczsz:0/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/slodowiczsz:0",
                "plots": "https://api.plotly.com/v2/plots/slodowiczsz:0",
                "parent": "https://api.plotly.com/v2/folders/home?user=slodowiczsz"
            },
            "owner": "slodowiczsz",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~slodowiczsz/0/",
            "world_readable": true,
            "date_modified": "2019-06-17T20:24:35.842Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~slodowiczsz/0/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "f08e370b-a4b8-4eaa-8803-8ab643639ac2",
                        "type": "scatter",
                        "xsrc": "slodowiczsz:1:92a1ee",
                        "ysrc": "slodowiczsz:1:d470e7"
                    },
                    {
                        "uid": "2a98e3e3-4325-465d-b885-08a6deb816bf",
                        "type": "scatter",
                        "xsrc": "slodowiczsz:1:92a1ee",
                        "ysrc": "slodowiczsz:1:69f128"
                    }
                ],
                "layout": {}
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~slodowiczsz",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/54.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 20:04:08",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "slodowiczsz",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T20:24:13.481606Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jingwenc/93.embed",
            "fid": "jingwenc:93",
            "filename": "plot from API (1)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/jingwenc:93/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/jingwenc:93/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/jingwenc:93/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/jingwenc:93/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jingwenc:93",
                "plots": "https://api.plotly.com/v2/plots/jingwenc:93",
                "parent": "https://api.plotly.com/v2/folders/home?user=jingwenc"
            },
            "owner": "jingwenc",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Time series with range slider and selectors",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~jingwenc/93/time-series-with-range-slider-and-selectors/",
            "world_readable": true,
            "date_modified": "2019-06-17T20:24:13.988Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jingwenc/93/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "a964ebb2-881c-4f26-9832-f1d1f150d668",
                        "type": "scatter",
                        "xsrc": "jingwenc:94:7abf5a",
                        "ysrc": "jingwenc:94:28281e"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Time series with range slider and selectors"
                    },
                    "xaxis": {
                        "type": "date",
                        "rangeslider": {
                            "visible": true
                        },
                        "rangeselector": {
                            "buttons": [
                                {
                                    "step": "month",
                                    "count": 1,
                                    "label": "1m",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "month",
                                    "count": 6,
                                    "label": "6m",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "year",
                                    "count": 1,
                                    "label": "YTD",
                                    "stepmode": "todate"
                                },
                                {
                                    "step": "year",
                                    "count": 1,
                                    "label": "1y",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "all"
                                }
                            ]
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jingwenc",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/37.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-02-20 18:49:11",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jingwenc",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T20:23:21.262768Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Forcso/11.embed",
            "fid": "Forcso:11",
            "filename": "Pres_Oil_Cerro_Verde",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Forcso/11/9_IJH0TJKBZ9URB4408OTAKLPIKHK2S7.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Forcso/11/2_Y66GUQA4Z0ZC870J7V37HPF4RU9GQW.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Forcso/11/8_DEKYIPR7DF9PWFW2JBEI5TIMJF12Q4.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Forcso/11/9_IJH0TJKBZ9URB4408OTAKLPIKHK2S7.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Forcso:11",
                "plots": "https://api.plotly.com/v2/plots/Forcso:11",
                "parent": "https://api.plotly.com/v2/folders/home?user=Forcso"
            },
            "owner": "Forcso",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Forcso/11/",
            "world_readable": true,
            "date_modified": "2019-06-17T21:23:19.461Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Forcso/11/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "green",
                        "type": "bar",
                        "xsrc": "Forcso:10:828735",
                        "ysrc": "Forcso:10:2c0556",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.88976377952756
                            },
                            "color": "rgba(0,255,0,1)",
                            "autocolorscale": false
                        },
                        "basesrc": "Forcso:10:9288d1",
                        "textsrc": "Forcso:10:8d1a68",
                        "widthsrc": "Forcso:10:1ae8f6",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "green",
                        "orientation": "h"
                    },
                    {
                        "base": 0,
                        "name": "orange",
                        "text": "reorder(Equipo, Presión_Aceite, sum): K-303<br />Presión_Aceite: 60.92<br />color: orange",
                        "type": "bar",
                        "xsrc": "Forcso:10:7b68fa",
                        "ysrc": "Forcso:10:b19a48",
                        "frame": null,
                        "width": 0.9,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.88976377952756
                            },
                            "color": "rgba(255,165,0,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "orange",
                        "orientation": "h"
                    },
                    {
                        "name": "yellow",
                        "type": "bar",
                        "xsrc": "Forcso:10:4e3ca0",
                        "ysrc": "Forcso:10:5b1c85",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.88976377952756
                            },
                            "color": "rgba(255,255,0,1)",
                            "autocolorscale": false
                        },
                        "basesrc": "Forcso:10:bcef67",
                        "textsrc": "Forcso:10:2391ca",
                        "widthsrc": "Forcso:10:98167a",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "yellow",
                        "orientation": "h"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255,0,0,1)",
                            "width": 7.55905511811024
                        },
                        "mode": "lines",
                        "text": "yintercept: 60",
                        "type": "scatter",
                        "xsrc": "Forcso:10:b0524c",
                        "ysrc": "Forcso:10:c8a554",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "hoverinfo": "text",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.6118721461187,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "title": "Presión de aceite",
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            57.55,
                            67.45
                        ],
                        "ticks": "outside",
                        "title": "",
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.65296803652968,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716895,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(255,255,255,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "titlefont": {
                            "size": 14.6118721461187,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "automargin": true,
                        "hoverformat": ".2f",
                        "ticktextsrc": "Forcso:10:75e564",
                        "tickvalssrc": "Forcso:10:c826c3",
                        "categoryorder": "array",
                        "showticklabels": true,
                        "categoryarraysrc": "Forcso:10:0f21f1"
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.4,
                            9.6
                        ],
                        "ticks": "outside",
                        "title": "",
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.65296803652968,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716895,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(255,255,255,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "titlefont": {
                            "size": 14.6118721461187,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "automargin": true,
                        "hoverformat": ".2f",
                        "ticktextsrc": "Forcso:10:a863cc",
                        "tickvalssrc": "Forcso:10:64cdc4",
                        "categoryorder": "array",
                        "showticklabels": true,
                        "categoryarraysrc": "Forcso:10:a39cf0"
                    },
                    "legend": {
                        "y": 1,
                        "font": {
                            "size": 11.689497716895,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "bgcolor": "rgba(255,255,255,1)",
                        "bordercolor": "transparent",
                        "borderwidth": 1.88976377952756
                    },
                    "margin": {
                        "b": 27.4471347453201,
                        "l": 40.1826484018265,
                        "r": 7.30593607305936,
                        "t": 45.6389155672379
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        }
                    ],
                    "barmode": "relative",
                    "hovermode": "closest",
                    "titlefont": {
                        "size": 17.5342465753425,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "showlegend": true,
                    "plot_bgcolor": "rgba(235,235,235,1)",
                    "paper_bgcolor": "rgba(255,255,255,1)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Forcso",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-25 14:46:04",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Forcso",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T20:23:16.802662Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Forcso/9.embed",
            "fid": "Forcso:9",
            "filename": "Pres_Oil_Bambas",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Forcso/9/9_IYT2GG2JFA5TCEL2P3CMB2GGB91LSH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Forcso/9/2_34ISEA8LQSRT61Y2VJV9BYB9WIO47P.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Forcso/9/8_XQ9PKJ9L6Z4BU9ZUSG3PF1VJXHL4QB.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Forcso/9/9_IYT2GG2JFA5TCEL2P3CMB2GGB91LSH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Forcso:9",
                "plots": "https://api.plotly.com/v2/plots/Forcso:9",
                "parent": "https://api.plotly.com/v2/folders/home?user=Forcso"
            },
            "owner": "Forcso",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Forcso/9/",
            "world_readable": true,
            "date_modified": "2019-06-17T21:22:51.368Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Forcso/9/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "name": "green",
                        "type": "bar",
                        "xsrc": "Forcso:8:307b96",
                        "ysrc": "Forcso:8:8c1d0e",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.88976377952756
                            },
                            "color": "rgba(0,255,0,1)",
                            "autocolorscale": false
                        },
                        "basesrc": "Forcso:8:b22112",
                        "textsrc": "Forcso:8:8df8b4",
                        "widthsrc": "Forcso:8:5af0d3",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "green",
                        "orientation": "h"
                    },
                    {
                        "base": 0,
                        "name": "yellow",
                        "text": "reorder(Equipo, Presión_Aceite, sum): HT-004<br />Presión_Aceite: 67.88<br />color: yellow",
                        "type": "bar",
                        "xsrc": "Forcso:8:f88883",
                        "ysrc": "Forcso:8:8eacd8",
                        "frame": null,
                        "width": 0.9,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "transparent",
                                "width": 1.88976377952756
                            },
                            "color": "rgba(255,165,0,1)",
                            "autocolorscale": false
                        },
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "yellow",
                        "orientation": "h"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(255,0,0,1)",
                            "width": 7.55905511811024
                        },
                        "mode": "lines",
                        "text": "yintercept: 60",
                        "type": "scatter",
                        "xsrc": "Forcso:8:a4c504",
                        "ysrc": "Forcso:8:4cbf6b",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "hoverinfo": "text",
                        "showlegend": false
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.6118721461187,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "title": "Presión de aceite",
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            63.6,
                            72.4
                        ],
                        "ticks": "outside",
                        "title": "",
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.65296803652968,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716895,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(255,255,255,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "titlefont": {
                            "size": 14.6118721461187,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "automargin": true,
                        "hoverformat": ".2f",
                        "ticktextsrc": "Forcso:8:82fff0",
                        "tickvalssrc": "Forcso:8:02796b",
                        "categoryorder": "array",
                        "showticklabels": true,
                        "categoryarraysrc": "Forcso:8:1c2db0"
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.4,
                            16.6
                        ],
                        "ticks": "outside",
                        "title": "",
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.65296803652968,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.689497716895,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(255,255,255,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": "rgba(51,51,51,1)",
                        "tickwidth": 0.66417600664176,
                        "titlefont": {
                            "size": 14.6118721461187,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "automargin": true,
                        "hoverformat": ".2f",
                        "ticktextsrc": "Forcso:8:eee363",
                        "tickvalssrc": "Forcso:8:dc1dd1",
                        "categoryorder": "array",
                        "showticklabels": true,
                        "categoryarraysrc": "Forcso:8:87228f"
                    },
                    "legend": {
                        "y": 1,
                        "font": {
                            "size": 11.689497716895,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "bgcolor": "rgba(255,255,255,1)",
                        "bordercolor": "transparent",
                        "borderwidth": 1.88976377952756
                    },
                    "margin": {
                        "b": 27.4471347453201,
                        "l": 46.027397260274,
                        "r": 7.30593607305936,
                        "t": 45.6389155672379
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 1,
                            "y0": 0,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        }
                    ],
                    "barmode": "relative",
                    "hovermode": "closest",
                    "titlefont": {
                        "size": 17.5342465753425,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "showlegend": true,
                    "plot_bgcolor": "rgba(235,235,235,1)",
                    "paper_bgcolor": "rgba(255,255,255,1)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Forcso",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-12.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-03-25 14:46:04",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Forcso",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T20:22:53.787792Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~krox413/6.embed",
            "fid": "krox413:6",
            "filename": "plot from API (2)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/krox413:6/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/krox413:6/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/krox413:6/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/krox413:6/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/krox413:6",
                "plots": "https://api.plotly.com/v2/plots/krox413:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=krox413"
            },
            "owner": "krox413",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Gantt Chart",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~krox413/6/gantt-chart/",
            "world_readable": true,
            "date_modified": "2019-06-17T20:22:54.390Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~krox413/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "35a3f4fa-a24d-4df2-931e-d783466fe405",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:b67f63",
                        "ysrc": "krox413:7:b1dca2",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "1e1fb297-5e18-47a2-a727-8fcd09e94a02",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:302a45",
                        "ysrc": "krox413:7:7ae229",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "ca887ecc-27a5-4420-b92e-140b52bce85b",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:5bc3f2",
                        "ysrc": "krox413:7:b1583d",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "2e6abd48-839b-4747-aa97-754f94675ba9",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:ecdd66",
                        "ysrc": "krox413:7:231db9",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "0da8d831-828e-45da-adf3-7c5bbe288681",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:3228b0",
                        "ysrc": "krox413:7:bbe139",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "ccb3a6f3-81d2-4c38-8caa-1a788d783c65",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:8ed263",
                        "ysrc": "krox413:7:f81e3e",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "aac78808-81f5-498a-a946-989d3903fc2b",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:b358e8",
                        "ysrc": "krox413:7:6490cc",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "96bd486d-48de-434d-ba69-540b7d82bf79",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:8be833",
                        "ysrc": "krox413:7:b6f919",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "77dbe691-520e-46bd-9ea9-0848cdd093a5",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:8be833",
                        "ysrc": "krox413:7:c46ed5",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "b0720f66-7fb6-453c-a492-213a6b9b8d0e",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:8338b6",
                        "ysrc": "krox413:7:362f6f",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "dc10d452-03d7-42db-b060-37ffe6731c5f",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:100866",
                        "ysrc": "krox413:7:dcbd15",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "e3519e1e-40f9-4087-9d42-87b10f34d4af",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:c8532a",
                        "ysrc": "krox413:7:bfad38",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "412dc930-8786-48c5-bd4f-b228fd51b43f",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:1d08a5",
                        "ysrc": "krox413:7:85f264",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "b21fa4ef-f30e-4d11-8e0d-d67c9c1c3fe7",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:284a65",
                        "ysrc": "krox413:7:68064c",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "258a1124-756b-49d4-bf08-9942bafbee6d",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:d4b8e1",
                        "ysrc": "krox413:7:b60aa4",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "9a4333f4-a5f4-4cfb-8de7-95401127854f",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:077666",
                        "ysrc": "krox413:7:d5674d",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "0ab4c016-7a3b-4d59-8400-fd55524995a6",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:38d417",
                        "ysrc": "krox413:7:903aa3",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "b63bb794-d759-470d-ab43-46758694fd26",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:fae4aa",
                        "ysrc": "krox413:7:986e6a",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "3ad82c46-d44d-4672-b70f-e9a49c78c24c",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:81abe2",
                        "ysrc": "krox413:7:91c25c",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "3cf6ef2d-62ea-42b7-93c1-70ae6be3f021",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:3e066a",
                        "ysrc": "krox413:7:1d6bc9",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "5dec9a6f-1717-4639-8bad-ccb6db8016f6",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:212716",
                        "ysrc": "krox413:7:fd8a52",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "c6d4fc6f-19ad-4f5c-b919-87ad41e1886a",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:c7763b",
                        "ysrc": "krox413:7:928727",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "46ab89e0-abec-45ef-87c0-4a50f7cf145e",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:c7763b",
                        "ysrc": "krox413:7:8355d1",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "e8fc6f99-c1c8-47c3-be1c-66e2aed75089",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:b93f5a",
                        "ysrc": "krox413:7:118017",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "0efeeaa2-34a1-43fb-b2aa-f84318cbf3df",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:d6182e",
                        "ysrc": "krox413:7:7c8981",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "8ab58185-fb0b-47e5-9d37-55d6dca2a0d0",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:8bbd9f",
                        "ysrc": "krox413:7:179c9f",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "b93a6f3c-1ca6-41ca-a071-b7a4abd76aa7",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:912b0c",
                        "ysrc": "krox413:7:8a2f49",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "37830ef5-2214-4647-9470-a381a3313123",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:f002d1",
                        "ysrc": "krox413:7:c74e33",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "d999dc62-7009-4867-ac62-84546c1e336e",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:b65bc9",
                        "ysrc": "krox413:7:21ddc4",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "d10e1c99-5c2d-4663-a815-3a26cffba5b4",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:3e1cea",
                        "ysrc": "krox413:7:ac7e42",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "8c6c2c1a-c886-4c35-89fc-b0ffc7147c88",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:3e1cea",
                        "ysrc": "krox413:7:93f6db",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "3a67eeb7-e8d0-482a-9839-daa06b6b9f97",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:046fb1",
                        "ysrc": "krox413:7:d02751",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "cb7a4a10-2247-4802-b510-82a86cb10f33",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:42babc",
                        "ysrc": "krox413:7:20291c",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "fa8cbd25-e7f2-480a-8d01-f891e4db869f",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:a08316",
                        "ysrc": "krox413:7:cca3b9",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "7c6c5db5-9289-4c30-b8f0-15ad6cd77789",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:8a7370",
                        "ysrc": "krox413:7:fd9511",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "2722f547-91b0-4fb6-9213-6b3c090ebff0",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:d960f4",
                        "ysrc": "krox413:7:07001f",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "959f2df4-c88f-404a-9a19-0ecd2e3ffdb0",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:136066",
                        "ysrc": "krox413:7:466a6e",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "dc345db7-9204-48af-8fd1-d44a2d927bc6",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:113f20",
                        "ysrc": "krox413:7:63be18",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "3a77d5a1-7ba9-4301-b0f9-8a0a3fede024",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:133f23",
                        "ysrc": "krox413:7:946b0c",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "35a5f1d5-0bad-4147-8cb5-1c0ee5987f02",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:133f23",
                        "ysrc": "krox413:7:3f588c",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "9da7de04-e159-4993-9594-647686fa5555",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:6bf49e",
                        "ysrc": "krox413:7:e5a556",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "cd059245-504a-48ff-98d3-adda849f1868",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:cd6a19",
                        "ysrc": "krox413:7:3d8034",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "90cf9183-d95f-48bb-9191-2990248b9ba1",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:4612ad",
                        "ysrc": "krox413:7:f4432e",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "01efe306-28f9-4c97-b135-ff9c4f9e2456",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:91d07d",
                        "ysrc": "krox413:7:aba90b",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "071e54aa-3693-44a7-9134-5c6bfa806e9a",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:91d07d",
                        "ysrc": "krox413:7:fb2921",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "c96e08d6-36e7-4418-a77b-03d82b69d008",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:80a7b9",
                        "ysrc": "krox413:7:cdd895",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "e1ad1af9-2d08-4f02-a9a4-8c76ae575d17",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:80a7b9",
                        "ysrc": "krox413:7:342f53",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "508f03dd-a9b4-4d78-a384-c94cd19e7ccd",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:6c8b1f",
                        "ysrc": "krox413:7:dcfa71",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "0c2048e4-cdfa-4fdd-8181-720daf756e22",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:9f0d59",
                        "ysrc": "krox413:7:35a6f2",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "1f5fca10-9224-4a54-8abe-267f72e0876c",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:9f0d59",
                        "ysrc": "krox413:7:4fd632",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "b07c9b89-3cbd-4469-862e-ba7dd3f332e4",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:096855",
                        "ysrc": "krox413:7:70bcfa",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "705df2a0-4b70-412b-b931-0cfeb4041a18",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:98e4bf",
                        "ysrc": "krox413:7:de38cc",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "dc0e7149-fa3a-480d-8e0c-b9e7b32b7fe9",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:78428b",
                        "ysrc": "krox413:7:6c3851",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "83842352-f590-48cd-a889-1eeb1dbc5d70",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:1dddd4",
                        "ysrc": "krox413:7:06d05a",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "a70e95e3-f845-4947-8580-a12672c2f088",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:696905",
                        "ysrc": "krox413:7:815eba",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "c2dd2063-140a-46a7-9f73-53e878638a4e",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:696905",
                        "ysrc": "krox413:7:c06351",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "714892a3-5e00-451a-81a1-86789dc4bc1f",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:db4a45",
                        "ysrc": "krox413:7:d198fd",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "1dc9f4ba-614c-438d-8922-6726948313be",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:38b816",
                        "ysrc": "krox413:7:cc5190",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "0cfb8884-c56e-47a1-88fc-55a163a1f471",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:38b816",
                        "ysrc": "krox413:7:d866c7",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "6f8ca21a-1114-4ce8-ba5c-84eae2f09a18",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:747e30",
                        "ysrc": "krox413:7:febece",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "8404797e-90ba-4cf9-bc2a-16eae9454b2a",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:fb7efb",
                        "ysrc": "krox413:7:92cfc2",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "15f02613-c3ac-4f3a-a921-ef3bcf22fa54",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:fb7efb",
                        "ysrc": "krox413:7:7a7320",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "08d98bd4-836d-4d36-b1ba-ff2445b6778a",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:c49429",
                        "ysrc": "krox413:7:be51b0",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "26ea57e4-4beb-419b-967f-6d07c3d3b13e",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:ccc7db",
                        "ysrc": "krox413:7:6bc4de",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "b7afda81-4200-4e29-9912-417490520b56",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:7da1cc",
                        "ysrc": "krox413:7:8b7d78",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "cf8003de-8b71-46de-ab6b-064e11e750cc",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:07dd76",
                        "ysrc": "krox413:7:02c013",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "9431190f-dddb-4bca-9d97-ef2713bad763",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:7c9fcb",
                        "ysrc": "krox413:7:44d6c2",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "7ac18b1a-f79f-4270-bbab-84ef85d99457",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:6dc708",
                        "ysrc": "krox413:7:c8c00c",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "aad200c5-c386-483b-ae75-c4bb7315ed01",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:6dc708",
                        "ysrc": "krox413:7:92dcdb",
                        "marker": {
                            "color": "white"
                        }
                    },
                    {
                        "uid": "fb52b2cd-8d6d-412d-b8eb-276cd9d394e7",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "krox413:7:bf9273",
                        "ysrc": "krox413:7:2f50ad",
                        "marker": {
                            "color": "white"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Gantt Chart"
                    },
                    "width": 900,
                    "xaxis": {
                        "type": "date",
                        "showgrid": false,
                        "zeroline": false,
                        "rangeselector": {
                            "buttons": [
                                {
                                    "step": "day",
                                    "count": 7,
                                    "label": "1w",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "month",
                                    "count": 1,
                                    "label": "1m",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "month",
                                    "count": 6,
                                    "label": "6m",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "year",
                                    "count": 1,
                                    "label": "YTD",
                                    "stepmode": "todate"
                                },
                                {
                                    "step": "year",
                                    "count": 1,
                                    "label": "1y",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "all"
                                }
                            ]
                        }
                    },
                    "yaxis": {
                        "range": [
                            -1,
                            71
                        ],
                        "showgrid": false,
                        "ticktext": [
                            "Tesouro Prefixado",
                            "Tesouro Prefixado",
                            "Tesouro IPCA+",
                            "Tesouro Prefixado",
                            "Tesouro Selic",
                            "Tesouro Prefixado",
                            "Tesouro IGPM+ com Juros Semestrais",
                            "Tesouro IGPM+ com Juros Semestrais",
                            "Tesouro Prefixado",
                            "Tesouro Prefixado",
                            "Tesouro Prefixado",
                            "Tesouro IPCA+ com Juros Semestrais",
                            "Tesouro Prefixado",
                            "Tesouro Prefixado",
                            "Tesouro Selic",
                            "Tesouro IPCA+ com Juros Semestrais",
                            "Tesouro Prefixado",
                            "Tesouro Selic",
                            "Tesouro IGPM+ com Juros Semestrais",
                            "Tesouro Prefixado",
                            "Tesouro Prefixado",
                            "Tesouro Prefixado",
                            "Tesouro Prefixado com Juros Semestrais",
                            "Tesouro Prefixado",
                            "Tesouro Prefixado",
                            "Tesouro IPCA+ com Juros Semestrais",
                            "Tesouro Prefixado",
                            "Tesouro Selic",
                            "Tesouro Prefixado",
                            "Tesouro Prefixado",
                            "Tesouro IGPM+ com Juros Semestrais",
                            "Tesouro IPCA+ com Juros Semestrais",
                            "Tesouro Prefixado",
                            "Tesouro Prefixado",
                            "Tesouro Prefixado",
                            "Tesouro Selic",
                            "Tesouro Selic",
                            "Tesouro Prefixado",
                            "Tesouro Prefixado",
                            "Tesouro Prefixado com Juros Semestrais",
                            "Tesouro IGPM+ com Juros Semestrais",
                            "Tesouro IPCA+ com Juros Semestrais",
                            "Tesouro Selic",
                            "Tesouro Prefixado",
                            "Tesouro Prefixado com Juros Semestrais",
                            "Tesouro Prefixado com Juros Semestrais",
                            "Tesouro Prefixado",
                            "Tesouro IPCA+ com Juros Semestrais",
                            "Tesouro Prefixado com Juros Semestrais",
                            "Tesouro Prefixado",
                            "Tesouro Selic",
                            "Tesouro Prefixado",
                            "Tesouro IPCA+ com Juros Semestrais",
                            "Tesouro Selic",
                            "Tesouro Prefixado",
                            "Tesouro Prefixado com Juros Semestrais",
                            "Tesouro IPCA+ com Juros Semestrais",
                            "Tesouro Prefixado",
                            "Tesouro Prefixado com Juros Semestrais",
                            "Tesouro Selic",
                            "Tesouro IPCA+",
                            "Tesouro IPCA+ com Juros Semestrais",
                            "Tesouro Selic",
                            "Tesouro Prefixado",
                            "Tesouro Prefixado",
                            "Tesouro IPCA+ com Juros Semestrais",
                            "Tesouro Selic",
                            "Tesouro Prefixado com Juros Semestrais",
                            "Tesouro Prefixado",
                            "Tesouro IGPM+ com Juros Semestrais"
                        ],
                        "tickvals": [
                            0,
                            1,
                            2,
                            3,
                            4,
                            5,
                            6,
                            7,
                            8,
                            9,
                            10,
                            11,
                            12,
                            13,
                            14,
                            15,
                            16,
                            17,
                            18,
                            19,
                            20,
                            21,
                            22,
                            23,
                            24,
                            25,
                            26,
                            27,
                            28,
                            29,
                            30,
                            31,
                            32,
                            33,
                            34,
                            35,
                            36,
                            37,
                            38,
                            39,
                            40,
                            41,
                            42,
                            43,
                            44,
                            45,
                            46,
                            47,
                            48,
                            49,
                            50,
                            51,
                            52,
                            53,
                            54,
                            55,
                            56,
                            57,
                            58,
                            59,
                            60,
                            61,
                            62,
                            63,
                            64,
                            65,
                            66,
                            67,
                            68,
                            69
                        ],
                        "zeroline": false,
                        "autorange": false
                    },
                    "height": 600,
                    "shapes": [
                        {
                            "x0": "2018-02-01",
                            "x1": "2018-01-01",
                            "y0": -0.2,
                            "y1": 0.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(31, 119, 180)"
                        },
                        {
                            "x0": "2019-02-01",
                            "x1": "2019-01-01",
                            "y0": 0.8,
                            "y1": 1.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(255, 127, 14)"
                        },
                        {
                            "x0": "2019-05-15",
                            "x1": "2019-05-15",
                            "y0": 1.8,
                            "y1": 2.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(44, 160, 44)"
                        },
                        {
                            "x0": "2005-04-01",
                            "x1": "2005-04-01",
                            "y0": 2.8,
                            "y1": 3.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(214, 39, 40)"
                        },
                        {
                            "x0": "2005-02-16",
                            "x1": "2005-02-16",
                            "y0": 3.8,
                            "y1": 4.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(148, 103, 189)"
                        },
                        {
                            "x0": "2005-03-10",
                            "x1": "2005-01-10",
                            "y0": 4.8,
                            "y1": 5.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(140, 86, 75)"
                        },
                        {
                            "x0": "2005-01-12",
                            "x1": "2005-01-12",
                            "y0": 5.8,
                            "y1": 6.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(227, 119, 194)"
                        },
                        {
                            "x0": "2005-01-07",
                            "x1": "2005-01-07",
                            "y0": 6.8,
                            "y1": 7.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(127, 127, 127)"
                        },
                        {
                            "x0": "2005-01-07",
                            "x1": "2005-01-07",
                            "y0": 7.8,
                            "y1": 8.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(188, 189, 34)"
                        },
                        {
                            "x0": "2005-01-04",
                            "x1": "2005-01-04",
                            "y0": 8.8,
                            "y1": 9.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(23, 190, 207)"
                        },
                        {
                            "x0": "2006-03-07",
                            "x1": "2006-01-07",
                            "y0": 9.8,
                            "y1": 10.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(31, 119, 180)"
                        },
                        {
                            "x0": "2006-08-15",
                            "x1": "2006-08-15",
                            "y0": 10.8,
                            "y1": 11.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(255, 127, 14)"
                        },
                        {
                            "x0": "2006-03-04",
                            "x1": "2006-01-04",
                            "y0": 11.8,
                            "y1": 12.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(44, 160, 44)"
                        },
                        {
                            "x0": "2006-02-01",
                            "x1": "2006-01-01",
                            "y0": 12.8,
                            "y1": 13.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(214, 39, 40)"
                        },
                        {
                            "x0": "2006-01-18",
                            "x1": "2006-01-18",
                            "y0": 13.8,
                            "y1": 14.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(148, 103, 189)"
                        },
                        {
                            "x0": "2007-05-15",
                            "x1": "2007-05-15",
                            "y0": 14.8,
                            "y1": 15.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(140, 86, 75)"
                        },
                        {
                            "x0": "2007-02-04",
                            "x1": "2007-01-04",
                            "y0": 15.8,
                            "y1": 16.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(227, 119, 194)"
                        },
                        {
                            "x0": "2007-01-17",
                            "x1": "2007-01-17",
                            "y0": 16.8,
                            "y1": 17.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(127, 127, 127)"
                        },
                        {
                            "x0": "2006-01-12",
                            "x1": "2006-01-12",
                            "y0": 17.8,
                            "y1": 18.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(188, 189, 34)"
                        },
                        {
                            "x0": "2007-02-01",
                            "x1": "2007-01-01",
                            "y0": 18.8,
                            "y1": 19.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(23, 190, 207)"
                        },
                        {
                            "x0": "2006-02-10",
                            "x1": "2006-01-10",
                            "y0": 19.8,
                            "y1": 20.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(31, 119, 180)"
                        },
                        {
                            "x0": "2008-02-01",
                            "x1": "2008-01-01",
                            "y0": 20.8,
                            "y1": 21.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(255, 127, 14)"
                        },
                        {
                            "x0": "2008-02-01",
                            "x1": "2008-01-01",
                            "y0": 21.8,
                            "y1": 22.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(44, 160, 44)"
                        },
                        {
                            "x0": "2007-01-10",
                            "x1": "2007-01-10",
                            "y0": 22.8,
                            "y1": 23.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(214, 39, 40)"
                        },
                        {
                            "x0": "2007-02-07",
                            "x1": "2007-01-07",
                            "y0": 23.8,
                            "y1": 24.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(148, 103, 189)"
                        },
                        {
                            "x0": "2008-08-15",
                            "x1": "2008-08-15",
                            "y0": 24.8,
                            "y1": 25.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(140, 86, 75)"
                        },
                        {
                            "x0": "2008-01-10",
                            "x1": "2008-01-10",
                            "y0": 25.8,
                            "y1": 26.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(227, 119, 194)"
                        },
                        {
                            "x0": "2008-06-18",
                            "x1": "2008-06-18",
                            "y0": 26.8,
                            "y1": 27.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(127, 127, 127)"
                        },
                        {
                            "x0": "2008-01-07",
                            "x1": "2008-01-07",
                            "y0": 27.8,
                            "y1": 28.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(188, 189, 34)"
                        },
                        {
                            "x0": "2008-01-04",
                            "x1": "2008-01-04",
                            "y0": 28.8,
                            "y1": 29.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(23, 190, 207)"
                        },
                        {
                            "x0": "2008-01-04",
                            "x1": "2008-01-04",
                            "y0": 29.8,
                            "y1": 30.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(31, 119, 180)"
                        },
                        {
                            "x0": "2009-05-15",
                            "x1": "2009-05-15",
                            "y0": 30.8,
                            "y1": 31.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(255, 127, 14)"
                        },
                        {
                            "x0": "2009-01-04",
                            "x1": "2009-01-04",
                            "y0": 31.8,
                            "y1": 32.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(44, 160, 44)"
                        },
                        {
                            "x0": "2009-01-07",
                            "x1": "2009-01-07",
                            "y0": 32.8,
                            "y1": 33.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(214, 39, 40)"
                        },
                        {
                            "x0": "2009-02-01",
                            "x1": "2009-01-01",
                            "y0": 33.8,
                            "y1": 34.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(148, 103, 189)"
                        },
                        {
                            "x0": "2009-03-18",
                            "x1": "2009-03-18",
                            "y0": 34.8,
                            "y1": 35.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(140, 86, 75)"
                        },
                        {
                            "x0": "2010-03-17",
                            "x1": "2010-03-17",
                            "y0": 35.8,
                            "y1": 36.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(227, 119, 194)"
                        },
                        {
                            "x0": "2009-01-10",
                            "x1": "2009-01-10",
                            "y0": 36.8,
                            "y1": 37.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(127, 127, 127)"
                        },
                        {
                            "x0": "2010-04-01",
                            "x1": "2010-01-01",
                            "y0": 37.8,
                            "y1": 38.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(188, 189, 34)"
                        },
                        {
                            "x0": "2010-04-01",
                            "x1": "2010-01-01",
                            "y0": 38.8,
                            "y1": 39.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(23, 190, 207)"
                        },
                        {
                            "x0": "2011-01-03",
                            "x1": "2011-01-03",
                            "y0": 39.8,
                            "y1": 40.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(31, 119, 180)"
                        },
                        {
                            "x0": "2011-05-16",
                            "x1": "2011-05-15",
                            "y0": 40.8,
                            "y1": 41.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(255, 127, 14)"
                        },
                        {
                            "x0": "2011-03-16",
                            "x1": "2011-03-16",
                            "y0": 41.8,
                            "y1": 42.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(44, 160, 44)"
                        },
                        {
                            "x0": "2011-03-01",
                            "x1": "2011-01-01",
                            "y0": 42.8,
                            "y1": 43.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(214, 39, 40)"
                        },
                        {
                            "x0": "2011-03-01",
                            "x1": "2011-01-01",
                            "y0": 43.8,
                            "y1": 44.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(148, 103, 189)"
                        },
                        {
                            "x0": "2010-01-07",
                            "x1": "2010-01-07",
                            "y0": 44.8,
                            "y1": 45.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(140, 86, 75)"
                        },
                        {
                            "x0": "2010-01-07",
                            "x1": "2010-01-07",
                            "y0": 45.8,
                            "y1": 46.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(227, 119, 194)"
                        },
                        {
                            "x0": "2010-08-16",
                            "x1": "2010-08-15",
                            "y0": 46.8,
                            "y1": 47.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(127, 127, 127)"
                        },
                        {
                            "x0": "2012-02-01",
                            "x1": "2012-01-01",
                            "y0": 47.8,
                            "y1": 48.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(188, 189, 34)"
                        },
                        {
                            "x0": "2012-02-01",
                            "x1": "2012-01-01",
                            "y0": 48.8,
                            "y1": 49.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(23, 190, 207)"
                        },
                        {
                            "x0": "2012-07-03",
                            "x1": "2012-07-03",
                            "y0": 49.8,
                            "y1": 50.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(31, 119, 180)"
                        },
                        {
                            "x0": "2011-01-07",
                            "x1": "2011-01-07",
                            "y0": 50.8,
                            "y1": 51.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(255, 127, 14)"
                        },
                        {
                            "x0": "2013-05-15",
                            "x1": "2013-05-15",
                            "y0": 51.8,
                            "y1": 52.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(44, 160, 44)"
                        },
                        {
                            "x0": "2013-07-03",
                            "x1": "2013-07-03",
                            "y0": 52.8,
                            "y1": 53.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(214, 39, 40)"
                        },
                        {
                            "x0": "2013-02-01",
                            "x1": "2013-01-01",
                            "y0": 53.8,
                            "y1": 54.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(148, 103, 189)"
                        },
                        {
                            "x0": "2013-02-01",
                            "x1": "2013-01-01",
                            "y0": 54.8,
                            "y1": 55.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(140, 86, 75)"
                        },
                        {
                            "x0": "2012-08-15",
                            "x1": "2012-08-15",
                            "y0": 55.8,
                            "y1": 56.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(227, 119, 194)"
                        },
                        {
                            "x0": "2014-02-01",
                            "x1": "2014-01-01",
                            "y0": 56.8,
                            "y1": 57.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(127, 127, 127)"
                        },
                        {
                            "x0": "2014-02-01",
                            "x1": "2014-01-01",
                            "y0": 57.8,
                            "y1": 58.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(188, 189, 34)"
                        },
                        {
                            "x0": "2014-07-03",
                            "x1": "2014-07-03",
                            "y0": 58.8,
                            "y1": 59.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(23, 190, 207)"
                        },
                        {
                            "x0": "2015-05-15",
                            "x1": "2015-05-15",
                            "y0": 59.8,
                            "y1": 60.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(31, 119, 180)"
                        },
                        {
                            "x0": "2015-05-15",
                            "x1": "2015-05-15",
                            "y0": 60.8,
                            "y1": 61.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(255, 127, 14)"
                        },
                        {
                            "x0": "2015-09-03",
                            "x1": "2015-07-03",
                            "y0": 61.8,
                            "y1": 62.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(44, 160, 44)"
                        },
                        {
                            "x0": "2015-02-01",
                            "x1": "2015-01-01",
                            "y0": 62.8,
                            "y1": 63.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(214, 39, 40)"
                        },
                        {
                            "x0": "2016-04-01",
                            "x1": "2016-01-01",
                            "y0": 63.8,
                            "y1": 64.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(148, 103, 189)"
                        },
                        {
                            "x0": "2017-05-15",
                            "x1": "2017-05-15",
                            "y0": 64.8,
                            "y1": 65.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(140, 86, 75)"
                        },
                        {
                            "x0": "2017-07-03",
                            "x1": "2017-07-03",
                            "y0": 65.8,
                            "y1": 66.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(227, 119, 194)"
                        },
                        {
                            "x0": "2017-02-01",
                            "x1": "2017-01-01",
                            "y0": 66.8,
                            "y1": 67.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(127, 127, 127)"
                        },
                        {
                            "x0": "2017-02-01",
                            "x1": "2017-01-01",
                            "y0": 67.8,
                            "y1": 68.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(188, 189, 34)"
                        },
                        {
                            "x0": "2017-03-07",
                            "x1": "2017-01-07",
                            "y0": 68.8,
                            "y1": 69.2,
                            "line": {
                                "width": 0
                            },
                            "type": "rect",
                            "xref": "x",
                            "yref": "y",
                            "opacity": 1,
                            "fillcolor": "rgb(23, 190, 207)"
                        }
                    ],
                    "hovermode": "closest",
                    "showlegend": false
                }
            },
            "height": 600,
            "width": 900,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~krox413",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/64.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-15 19:41:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "krox413",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T20:22:30.964637Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jingwenc/91.embed",
            "fid": "jingwenc:91",
            "filename": "plot from API (3)",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/jingwenc:91/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/jingwenc:91/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/jingwenc:91/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/jingwenc:91/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jingwenc:91",
                "plots": "https://api.plotly.com/v2/plots/jingwenc:91",
                "parent": "https://api.plotly.com/v2/folders/home?user=jingwenc"
            },
            "owner": "jingwenc",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Time series with range slider and selectors",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~jingwenc/91/time-series-with-range-slider-and-selectors/",
            "world_readable": true,
            "date_modified": "2019-06-17T20:22:31.514Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jingwenc/91/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "46d63260-6c9a-45be-b35e-eeab7bdf191d",
                        "type": "scatter",
                        "xsrc": "jingwenc:92:68e675",
                        "ysrc": "jingwenc:92:78c38d"
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Time series with range slider and selectors"
                    },
                    "xaxis": {
                        "type": "date",
                        "rangeslider": {
                            "visible": true
                        },
                        "rangeselector": {
                            "buttons": [
                                {
                                    "step": "month",
                                    "count": 1,
                                    "label": "1m",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "month",
                                    "count": 6,
                                    "label": "6m",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "year",
                                    "count": 1,
                                    "label": "YTD",
                                    "stepmode": "todate"
                                },
                                {
                                    "step": "year",
                                    "count": 1,
                                    "label": "1y",
                                    "stepmode": "backward"
                                },
                                {
                                    "step": "all"
                                }
                            ]
                        }
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jingwenc",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/37.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2018-02-20 18:49:11",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jingwenc",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T20:19:06.949904Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~mrpinheiro/1.embed",
            "fid": "mrpinheiro:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/mrpinheiro:1/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/mrpinheiro:1/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mrpinheiro/1/8_O78O9W37OHZR4VUZAJD89WGPK9XZQK.png",
                "list-thumb": "https://api.plotly.com/v2/files/mrpinheiro:1/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/mrpinheiro:1",
                "plots": "https://api.plotly.com/v2/plots/mrpinheiro:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=mrpinheiro"
            },
            "owner": "mrpinheiro",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~mrpinheiro/1/",
            "world_readable": true,
            "date_modified": "2019-06-17T20:22:40.002Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~mrpinheiro/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "mode": "lines",
                        "type": "scatter",
                        "xsrc": "mrpinheiro:0:dac3b7",
                        "ysrc": "mrpinheiro:0:f4d823"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Carga de um Capacitor"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.8347895154884832,
                            8.834789515488481
                        ],
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -9.488565693523526,
                            277.8781009731431
                        ],
                        "autorange": false
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "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
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "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
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "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,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~mrpinheiro",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/7.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 20:18:51",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "mrpinheiro",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T20:14:37.812790Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~fporrata/6.embed",
            "fid": "fporrata:6",
            "filename": "Manually Set Range",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/fporrata:6/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/fporrata:6/image?image_name=default",
                "block-thumb": "https://api.plotly.com/v2/files/fporrata:6/image?image_name=block-thumb",
                "list-thumb": "https://api.plotly.com/v2/files/fporrata:6/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/fporrata:6",
                "plots": "https://api.plotly.com/v2/plots/fporrata:6",
                "parent": "https://api.plotly.com/v2/folders/home?user=fporrata"
            },
            "owner": "fporrata",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "Manually Set Date Range",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~fporrata/6/manually-set-date-range/",
            "world_readable": true,
            "date_modified": "2019-06-17T20:14:38.236Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~fporrata/6/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "5af03c0c-e531-48e8-b06a-3957ab520544",
                        "line": {
                            "color": "#17BECF"
                        },
                        "name": "AAPL High",
                        "type": "scatter",
                        "xsrc": "fporrata:7:b5072f",
                        "ysrc": "fporrata:7:91ebdc",
                        "opacity": 0.8
                    },
                    {
                        "uid": "c1d9d2e1-7df6-4c9b-81a3-0269b0fc0a66",
                        "line": {
                            "color": "#7F7F7F"
                        },
                        "name": "AAPL Low",
                        "type": "scatter",
                        "xsrc": "fporrata:7:b5072f",
                        "ysrc": "fporrata:7:ac14ec",
                        "opacity": 0.8
                    }
                ],
                "layout": {
                    "title": {
                        "text": "Manually Set Date Range"
                    },
                    "xaxis": {
                        "range": [
                            "2016-07-01",
                            "2016-12-31"
                        ]
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~fporrata",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/89.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-13.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-17 18:45:31",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "fporrata",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        },
        {
            "creation_time": "2019-06-17T20:13:28.913260Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~diegocorredor724/36.embed",
            "fid": "diegocorredor724:36",
            "filename": "Ventas Sanautos Nacional por modelo",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/diegocorredor724:36/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/diegocorredor724:36/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/diegocorredor724/36/8_J0LSZMMM2H5ETQ6NG1AA5AN7HEM1WH.png",
                "list-thumb": "https://api.plotly.com/v2/files/diegocorredor724:36/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/diegocorredor724:36",
                "plots": "https://api.plotly.com/v2/plots/diegocorredor724:36",
                "parent": "https://api.plotly.com/v2/folders/home?user=diegocorredor724"
            },
            "owner": "diegocorredor724",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 4,
            "web_url": "https://chart-studio.plotly.com/~diegocorredor724/36/",
            "world_readable": true,
            "date_modified": "2019-06-21T13:49:19.792Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~diegocorredor724/36/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.1.x-1dd85352610e",
                                "y": "data.1.y-1dd863a47f9e",
                                "text": "data.1.text-1dd856136640",
                                "textposition": "data.1.textposition-1dd810655491"
                            }
                        },
                        "name": "2018",
                        "type": "bar",
                        "xsrc": "diegocorredor724:35:2d81a0",
                        "ysrc": "diegocorredor724:35:3f9914",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(255,215,0,1)"
                            },
                            "color": "rgba(255,215,0,1)"
                        },
                        "error_x": {
                            "color": "rgba(255,215,0,1)"
                        },
                        "error_y": {
                            "color": "rgba(255,215,0,1)"
                        },
                        "textsrc": "diegocorredor724:35:b700e8",
                        "textfont": {
                            "color": "rgba(255,215,0,1)"
                        },
                        "textpositionsrc": "diegocorredor724:35:873faa"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "data.2.x-1dd811591373",
                                "y": "data.2.y-1dd82f244268",
                                "text": "data.2.text-1dd87eaf28a7",
                                "textposition": "data.2.textposition-1dd851f06fd0"
                            }
                        },
                        "name": "2019",
                        "type": "bar",
                        "xsrc": "diegocorredor724:35:e15221",
                        "ysrc": "diegocorredor724:35:ff594f",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "line": {
                                "color": "rgba(64,224,208,1)"
                            },
                            "color": "rgba(64,224,208,1)"
                        },
                        "error_x": {
                            "color": "rgba(64,224,208,1)"
                        },
                        "error_y": {
                            "color": "rgba(64,224,208,1)"
                        },
                        "textsrc": "diegocorredor724:35:845041",
                        "textfont": {
                            "color": "rgba(64,224,208,1)"
                        },
                        "textpositionsrc": "diegocorredor724:35:23af0e"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "size": 24
                        },
                        "text": "<sub><b>Ventas Sanautos Nacional por modelo 2018 vs 2019</b></sub>"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            13.5
                        ],
                        "title": {
                            "text": "Modelo.General"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true,
                        "automargin": true,
                        "categoryarray": [
                            "Alaskan",
                            "Captur",
                            "Duster",
                            "Kangoo",
                            "Koleos",
                            "Kwid",
                            "Logan",
                            "Master",
                            "Oroch",
                            "Sandero",
                            "Stepway",
                            "Trafic",
                            "Twizy",
                            "Zoe"
                        ],
                        "categoryorder": "array"
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            542.1052631578947
                        ],
                        "title": {
                            "text": "suma"
                        },
                        "domain": [
                            0,
                            1
                        ],
                        "autorange": true,
                        "automargin": true
                    },
                    "margin": {
                        "b": 40,
                        "l": 60,
                        "r": 10,
                        "t": 25
                    },
                    "hovermode": "closest",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~diegocorredor724",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/2.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2019-06-06 12:07:53",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "diegocorredor724",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}