Plots List
Plots
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=cD0yMDI1LTA4LTEzKzE2JTNBMTAlM0EyMy41NjY1NTAlMkIwMCUzQTAw&format=api
https://api.plotly.com/v2/plots/?cursor=cD0yMDI1LTA4LTEzKzA4JTNBMTMlM0EzOS45NTc5MTIlMkIwMCUzQTAw&format=api", "previous": "https://api.plotly.com/v2/plots/?cursor=cj0xJnA9MjAyNS0wOC0xMysxNSUzQTIyJTNBMjAuOTQ0Mjk2JTJCMDAlM0EwMA%3D%3D&format=api", "results": [ { "creation_time": "2025-08-13T15:22:20.944296Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~mconway/69.embed", "fid": "mconway:69", "filename": "Plot 69", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/mconway/69/9_D3XFWPA34UXPN9VU8O1BKXMKHQJH89.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/mconway/69/2_NUKT4DW4QE1EHE61DNA4E6EXZMS8AZ.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/mconway/69/8_QCJ1LIH7K4CGZWIQ2RQZG4215G2K29.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/mconway/69/9_D3XFWPA34UXPN9VU8O1BKXMKHQJH89.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/mconway:69", "plots": "https://api.plotly.com/v2/plots/mconway:69", "parent": "https://api.plotly.com/v2/folders/home?user=mconway" }, "owner": "mconway", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~mconway/69/", "world_readable": true, "date_modified": "2025-08-13T15:27:49.384Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~mconway/69/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "time", "y": "Billed Cost" } }, "mode": "markers", "name": "Billed Cost", "type": "bar", "xsrc": "mconway:68:f4218d", "ysrc": "mconway:68:45e2c8", "marker": { "color": "rgb(53, 90, 195)" }, "orientation": "v" }, { "meta": { "columnNames": { "x": "time", "y": "Total Cost" } }, "mode": "markers", "name": "Total Cost", "type": "bar", "xsrc": "mconway:68:f4218d", "ysrc": "mconway:68:8cd05e", "marker": { "color": "rgb(233, 144, 46)" }, "stackgroup": null, "orientation": "v" } ], "frames": [], "layout": { "xaxis": { "type": "category", "range": [ -0.5, 6.5 ], "title": { "text": "TIME" }, "autorange": true }, "yaxis": { "type": "linear", "range": [ 0, 1048842.105263158 ], "autorange": true }, "margin": { "b": 10, "l": 10, "r": 10, "t": 10 }, "autosize": true, "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" }, "plot_bgcolor": "rgb(244, 245, 245)", "paper_bgcolor": "rgb(244, 245, 245)" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~mconway", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/68.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2020-12-11 11:21:42", "mapbox_access_tokens": null, "has_password": null, "username": "mconway", "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": "2025-08-13T15:04:24.750245Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~marpineros/1.embed", "fid": "marpineros:1", "filename": "24hrup MCF7", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/marpineros/1/9_WQ3O0KD3MKSKAS2MJIYOF9TZ1G8SDC.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/marpineros/1/2_WI05QFTKMRYLR7PG6AWNOZBWRDQM10.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/marpineros/1/8_OI33WFT739UTMEH3GPC40XA0Q1IG8A.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/marpineros/1/9_WQ3O0KD3MKSKAS2MJIYOF9TZ1G8SDC.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/marpineros:1", "plots": "https://api.plotly.com/v2/plots/marpineros:1", "parent": "https://api.plotly.com/v2/folders/home?user=marpineros" }, "owner": "marpineros", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~marpineros/1/", "world_readable": true, "date_modified": "2025-08-19T15:38:50.142Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~marpineros/1/", "current_user_permission": "read", "is_theme": null, "is_template": true, "autosize": false, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "-Log(FDR)", "y": "GO TERM - ID", "text": "N Genes", "marker": { "color": "Fold Enrichment" } } }, "mode": "markers", "name": "<br>", "type": "bar", "xsrc": "marpineros:0:b39605", "ysrc": "marpineros:0:30aec5,b0ae83*", "marker": { "cmax": 205, "cmin": 15, "line": { "color": "rgb(255, 253, 253)", "width": 0 }, "meta": { "columnNames": { "color": "Fold Enrichment" } }, "cauto": false, "colorbar": { "x": 1.033003300330033, "y": 0.5191608391608393, "title": { "text": "Fold Enrichment" } }, "colorsrc": "marpineros:0:b9372d", "showscale": true, "colorscale": [ [ 0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1, "#fde725" ] ], "reversescale": false }, "error_x": { "type": "percent", "color": "rgb(255, 253, 253)", "value": 10, "width": 4, "visible": false, "symmetric": true, "thickness": 2 }, "error_y": { "type": "percent", "color": "rgb(255, 253, 253)", "value": 10, "width": 4, "visible": false, "symmetric": true, "thickness": 2 }, "opacity": 1, "textsrc": "marpineros:0:02fa06", "textfont": { "size": 15, "color": "rgb(255, 0, 36)" }, "cliponaxis": true, "hoverlabel": { "align": "auto" }, "orientation": "h", "textposition": "outside", "constraintext": "both", "autocolorscale": false } ], "frames": [], "layout": { "font": { "color": "rgb(17, 17, 18)" }, "title": { "text": "<b>GO Functional analysis 24 h Up regulated </b>" }, "width": 780, "xaxis": { "type": "linear", "range": [ 1, 7 ], "ticks": "outside", "title": { "text": "<b>-Log (FDR)</b>" }, "showgrid": false, "showline": false, "zeroline": false, "autorange": false, "showspikes": false, "rangeslider": { "range": [ 0, 7 ], "yaxis": {}, "visible": false, "autorange": true }, "showticklabels": true }, "yaxis": { "type": "multicategory", "range": [ -0.5, 15.5 ], "ticks": "", "autorange": true, "showdividers": false }, "bargap": 0.19999999999999996, "height": 429, "margin": { "b": 80, "l": 80, "t": 40, "pad": 5 }, "barnorm": "", "autosize": false, "template": { "data": { "bar": [ { "type": "bar", "marker": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } } ], "table": [ { "type": "table", "cells": { "fill": { "color": "rgb(231,231,240)" }, "line": { "color": "white" } }, "header": { "fill": { "color": "rgb(183,183,191)" }, "line": { "color": "white" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "rgb(36,36,36)", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)" }, "baxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "rgb(36,36,36)", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 }, "autocolorscale": true } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 }, "autocolorscale": true } ], "scatter": [ { "type": "scatter", "marker": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } ], "histogram": [ { "type": "histogram", "marker": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "type": "scatter3d", "marker": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 }, "autocolorscale": true } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "outside", "ticklen": 8, "tickcolor": "rgb(36,36,36)", "tickwidth": 2, "outlinewidth": 0 }, "autocolorscale": true } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "rgb(234,234,242)", "showlakes": true, "subunitcolor": "white" }, "font": { "color": "rgb(36,36,36)" }, "polar": { "bgcolor": "rgb(234,234,242)", "radialaxis": { "ticks": "", "showgrid": true, "gridcolor": "white", "linecolor": "white" }, "angularaxis": { "ticks": "", "showgrid": true, "gridcolor": "white", "linecolor": "white" } }, "scene": { "xaxis": { "ticks": "", "showgrid": true, "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "rgb(234,234,242)" }, "yaxis": { "ticks": "", "showgrid": true, "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "rgb(234,234,242)" }, "zaxis": { "ticks": "", "showgrid": true, "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "rgb(234,234,242)" } }, "xaxis": { "ticks": "", "showgrid": true, "gridcolor": "white", "linecolor": "white", "automargin": true, "zerolinecolor": "white" }, "yaxis": { "ticks": "", "showgrid": true, "gridcolor": "white", "linecolor": "white", "automargin": true, "zerolinecolor": "white" }, "ternary": { "aaxis": { "ticks": "", "showgrid": true, "gridcolor": "white", "linecolor": "white" }, "baxis": { "ticks": "", "showgrid": true, "gridcolor": "white", "linecolor": "white" }, "caxis": { "ticks": "", "showgrid": true, "gridcolor": "white", "linecolor": "white" }, "bgcolor": "rgb(234,234,242)" }, "colorway": [ "rgb(76,114,176)", "rgb(221,132,82)", "rgb(85,168,104)", "rgb(196,78,82)", "rgb(129,114,179)", "rgb(147,120,96)", "rgb(218,139,195)", "rgb(140,140,140)", "rgb(204,185,116)", "rgb(100,181,205)" ], "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#67001f" ], [ 0.1, "#b2182b" ], [ 0.2, "#d6604d" ], [ 0.3, "#f4a582" ], [ 0.4, "#fddbc7" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#d1e5f0" ], [ 0.7, "#92c5de" ], [ 0.8, "#4393c3" ], [ 0.9, "#2166ac" ], [ 1, "#053061" ] ], "sequential": [ [ 0, "rgb(2,4,25)" ], [ 0.06274509803921569, "rgb(24,15,41)" ], [ 0.12549019607843137, "rgb(47,23,57)" ], [ 0.18823529411764706, "rgb(71,28,72)" ], [ 0.25098039215686274, "rgb(97,30,82)" ], [ 0.3137254901960784, "rgb(123,30,89)" ], [ 0.3764705882352941, "rgb(150,27,91)" ], [ 0.4392156862745098, "rgb(177,22,88)" ], [ 0.5019607843137255, "rgb(203,26,79)" ], [ 0.5647058823529412, "rgb(223,47,67)" ], [ 0.6274509803921569, "rgb(236,76,61)" ], [ 0.6901960784313725, "rgb(242,107,73)" ], [ 0.7529411764705882, "rgb(244,135,95)" ], [ 0.8156862745098039, "rgb(245,162,122)" ], [ 0.8784313725490196, "rgb(246,188,153)" ], [ 0.9411764705882353, "rgb(247,212,187)" ], [ 1, "rgb(250,234,220)" ] ], "sequentialminus": [ [ 0, "rgb(2,4,25)" ], [ 0.06274509803921569, "rgb(24,15,41)" ], [ 0.12549019607843137, "rgb(47,23,57)" ], [ 0.18823529411764706, "rgb(71,28,72)" ], [ 0.25098039215686274, "rgb(97,30,82)" ], [ 0.3137254901960784, "rgb(123,30,89)" ], [ 0.3764705882352941, "rgb(150,27,91)" ], [ 0.4392156862745098, "rgb(177,22,88)" ], [ 0.5019607843137255, "rgb(203,26,79)" ], [ 0.5647058823529412, "rgb(223,47,67)" ], [ 0.6274509803921569, "rgb(236,76,61)" ], [ 0.6901960784313725, "rgb(242,107,73)" ], [ 0.7529411764705882, "rgb(244,135,95)" ], [ 0.8156862745098039, "rgb(245,162,122)" ], [ 0.8784313725490196, "rgb(246,188,153)" ], [ 0.9411764705882353, "rgb(247,212,187)" ], [ 1, "rgb(250,234,220)" ] ] }, "plot_bgcolor": "rgb(234,234,242)", "paper_bgcolor": "white", "shapedefaults": { "line": { "width": 0 }, "opacity": 0.5, "fillcolor": "rgb(67,103,167)" }, "annotationdefaults": { "arrowcolor": "rgb(67,103,167)" } }, "themeRef": "SEABORN" }, "hovermode": "x", "hoverlabel": { "font": { "size": 15, "color": "#000" }, "align": "auto", "bgcolor": "rgb(255, 253, 253)", "bordercolor": "rgb(255, 253, 253)" }, "showlegend": false, "bargroupgap": 0 } }, "height": 429, "width": 780, "user": { "profile_url": "https://chart-studio.plotly.com/~marpineros", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/11.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": "2025-08-13 14:31:50", "mapbox_access_tokens": null, "has_password": null, "username": "marpineros", "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": "2025-08-13T14:56:00.680547Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~jrichards1/13.embed", "fid": "jrichards1:13", "filename": "Test 2A", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/jrichards1/13/9_95M5CLSNQ1X3Z5U4Z68R0SQK8GQXNJ.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/jrichards1/13/2_1BZW9D7Q8AV8IOI0O56VMT3VAFPO3L.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jrichards1/13/8_R36UGPXFIV2L982F6E0ETE5BKPUSG4.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jrichards1/13/9_95M5CLSNQ1X3Z5U4Z68R0SQK8GQXNJ.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/jrichards1:13", "plots": "https://api.plotly.com/v2/plots/jrichards1:13", "parent": "https://api.plotly.com/v2/folders/home?user=jrichards1" }, "owner": "jrichards1", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~jrichards1/13/", "world_readable": true, "date_modified": "2025-08-13T15:03:15.787Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~jrichards1/13/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "lines", "name": "TC-1", "type": "scatter", "xsrc": "jrichards1:12:e7015b", "ysrc": "jrichards1:12:596a9c" }, { "meta": { "columnNames": { "x": "A", "y": "C" } }, "mode": "lines", "name": "TC-2", "type": "scatter", "xsrc": "jrichards1:12:e7015b", "ysrc": "jrichards1:12:291a5b", "stackgroup": null }, { "meta": { "columnNames": { "x": "A", "y": "D" } }, "mode": "lines", "name": "TC-3", "type": "scatter", "xsrc": "jrichards1:12:e7015b", "ysrc": "jrichards1:12:b30b5a", "stackgroup": null }, { "meta": { "columnNames": { "x": "A", "y": "E" } }, "mode": "lines", "name": "TC-4", "type": "scatter", "xsrc": "jrichards1:12:e7015b", "ysrc": "jrichards1:12:233011", "yaxis": "y", "stackgroup": null } ], "frames": [], "layout": { "title": { "text": "Thermal Test 2A" }, "xaxis": { "type": "linear", "dtick": 5, "range": [ 0, 144 ], "tick0": 0, "ticks": "", "title": { "text": "Time (Minutes)" }, "mirror": "ticks", "showline": true, "tickmode": "linear", "zeroline": true, "autorange": true }, "yaxis": { "type": "linear", "dtick": 1, "range": [ 19.2, 53.2 ], "tick0": 0, "title": { "text": "Temperature (degC)" }, "tickmode": "linear", "autorange": true, "showticklabels": true }, "autosize": true, "dragmode": "zoom" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~jrichards1", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/39.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-08-08 18:37:57", "mapbox_access_tokens": null, "has_password": null, "username": "jrichards1", "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": "2025-08-13T13:56:23.881146Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~jrichards1/11.embed", "fid": "jrichards1:11", "filename": "Test 5", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/jrichards1/11/9_W7457TIJW191TX2DQJDTNODZCRVZS4.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/jrichards1/11/2_I9CRVCAOTBQV7DN7LR6Q4U3Y22MT4F.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jrichards1/11/8_VKNC5KE4K1NFOWUO2V70YBFTTPKEFD.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jrichards1/11/9_W7457TIJW191TX2DQJDTNODZCRVZS4.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/jrichards1:11", "plots": "https://api.plotly.com/v2/plots/jrichards1:11", "parent": "https://api.plotly.com/v2/folders/home?user=jrichards1" }, "owner": "jrichards1", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~jrichards1/11/", "world_readable": true, "date_modified": "2025-08-13T13:58:04.383Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~jrichards1/11/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "lines", "name": "TC-1", "type": "scatter", "xsrc": "jrichards1:10:e7015b", "ysrc": "jrichards1:10:596a9c" }, { "meta": { "columnNames": { "x": "A", "y": "C" } }, "mode": "lines", "name": "TC-2", "type": "scatter", "xsrc": "jrichards1:10:e7015b", "ysrc": "jrichards1:10:291a5b", "stackgroup": null }, { "meta": { "columnNames": { "x": "A", "y": "D" } }, "mode": "lines", "name": "TC-3", "type": "scatter", "xsrc": "jrichards1:10:e7015b", "ysrc": "jrichards1:10:b30b5a", "stackgroup": null }, { "meta": { "columnNames": { "x": "A", "y": "E" } }, "mode": "lines", "name": "TC-4", "type": "scatter", "xsrc": "jrichards1:10:e7015b", "ysrc": "jrichards1:10:233011", "yaxis": "y", "stackgroup": null } ], "frames": [], "layout": { "title": { "text": "Thermal Test 5" }, "xaxis": { "type": "linear", "dtick": 5, "range": [ 0, 194 ], "tick0": 0, "ticks": "", "title": { "text": "Time (Minutes)" }, "mirror": "ticks", "showline": true, "tickmode": "linear", "zeroline": true, "autorange": true }, "yaxis": { "type": "linear", "dtick": 1, "range": [ 20.016666666666666, 47.68333333333333 ], "tick0": 0, "title": { "text": "Temperature (degC)" }, "tickmode": "linear", "autorange": true, "showticklabels": true }, "autosize": true, "dragmode": "zoom" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~jrichards1", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/39.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-08-08 18:37:57", "mapbox_access_tokens": null, "has_password": null, "username": "jrichards1", "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": "2025-08-13T11:46:14.853712Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~sairakshana16/1.embed", "fid": "sairakshana16:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/sairakshana16/1/9_EM13QYEKSEXZ51L9D3O3UTYVFEADGQ.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/sairakshana16/1/2_B6Q0ZD3LQUDW6NDONF2OCQ8X3QGHR2.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/sairakshana16/1/8_YFF54R2WEEZH96E0FCUGWPW0Q7WRXK.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/sairakshana16/1/9_EM13QYEKSEXZ51L9D3O3UTYVFEADGQ.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/sairakshana16:1", "plots": "https://api.plotly.com/v2/plots/sairakshana16:1", "parent": "https://api.plotly.com/v2/folders/home?user=sairakshana16" }, "owner": "sairakshana16", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~sairakshana16/1/", "world_readable": true, "date_modified": "2025-08-13T11:46:14.868Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~sairakshana16/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "B", "y": "A", "text": "" } }, "mode": "markers", "type": "bar", "xsrc": "sairakshana16:0:92958a", "ysrc": "sairakshana16:0:298670", "marker": { "color": "rgb(129, 135, 144)" }, "hoverinfo": "x+y", "orientation": "h", "textposition": "none" } ], "frames": [], "layout": { "font": { "size": 16, "family": "Times New Roman" }, "title": { "text": "Click to enter Plot title" }, "xaxis": { "type": "linear", "range": [ 0, 52.63157894736842 ], "showgrid": false, "showline": false, "zeroline": true, "autorange": true, "zerolinecolor": "rgb(83, 84, 85)", "zerolinewidth": 2 }, "yaxis": { "type": "category", "range": [ -0.5, 2.5 ], "showgrid": false, "showline": false, "zeroline": true, "autorange": true, "zerolinecolor": "rgb(83, 84, 85)", "zerolinewidth": 2 }, "modebar": { "orientation": "h" }, "autosize": true, "colorway": [ "#4c78a8", "#f58518", "#e45756", "#72b7b2", "#54a24b", "#eeca3b", "#b279a2", "#ff9da6", "#9d755d", "#bab0ac" ], "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" }, "colorscale": { "diverging": [ [ 0, "#67001f" ], [ 0.1, "#b2182b" ], [ 0.2, "#d6604d" ], [ 0.3, "#f4a582" ], [ 0.4, "#fddbc7" ], [ 0.5, "#ffffff" ], [ 0.6, "#e0e0e0" ], [ 0.7, "#bababa" ], [ 0.8, "#878787" ], [ 0.9, "#4d4d4d" ], [ 1, "#1a1a1a" ] ], "sequential": [ [ 0, "#fcfbfd" ], [ 0.125, "#efedf5" ], [ 0.25, "#dadaeb" ], [ 0.375, "#bcbddc" ], [ 0.5, "#9e9ac8" ], [ 0.625, "#807dba" ], [ 0.75, "#6a51a3" ], [ 0.875, "#54278f" ], [ 1, "#3f007d" ] ], "sequentialminus": [ [ 0, "#fcfbfd" ], [ 0.125, "#efedf5" ], [ 0.25, "#dadaeb" ], [ 0.375, "#bcbddc" ], [ 0.5, "#9e9ac8" ], [ 0.625, "#807dba" ], [ 0.75, "#6a51a3" ], [ 0.875, "#54278f" ], [ 1, "#3f007d" ] ] } } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~sairakshana16", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/89.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-08-13 10:58:17", "mapbox_access_tokens": null, "has_password": null, "username": "sairakshana16", "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": "2025-08-13T11:37:01.001850Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~Ria113/1.embed", "fid": "Ria113:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/Ria113/1/9_CRWZ0567UUH5J2YBNO1WV552NCKY7N.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/Ria113/1/2_Y8IA2NP4AWXP1OF6Y57EJM4PEZ63HO.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Ria113/1/8_AE57M2GG1YTHVDSK8UF8GYKBOJFI6J.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Ria113/1/9_CRWZ0567UUH5J2YBNO1WV552NCKY7N.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/Ria113:1", "plots": "https://api.plotly.com/v2/plots/Ria113:1", "parent": "https://api.plotly.com/v2/folders/home?user=Ria113" }, "owner": "Ria113", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~Ria113/1/", "world_readable": true, "date_modified": "2025-08-13T11:38:16.720Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~Ria113/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "lines", "type": "scatter", "xsrc": "Ria113:0:38b29f", "ysrc": "Ria113:0:c977c6" }, { "meta": { "columnNames": { "x": "A", "y": "B" } }, "mode": "markers", "type": "scatter", "xsrc": "Ria113:0:38b29f", "ysrc": "Ria113:0:c977c6", "xaxis": "x", "stackgroup": null } ], "frames": [], "layout": { "title": { "text": "Click to enter Plot title" }, "xaxis": { "type": "linear", "range": [ -186.32075471698116, 3186.3207547169814 ], "autorange": true }, "yaxis": { "type": "linear", "range": [ -0.9857382550335572, 13.485738255033556 ], "autorange": true }, "autosize": true, "template": { "data": { "bar": [ { "type": "bar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#506784" }, "line": { "color": "rgb(17,17,17)" } }, "header": { "fill": { "color": "#2a3f5f" }, "line": { "color": "rgb(17,17,17)" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "#506784", "linecolor": "#506784", "endlinecolor": "#A2B1C6", "minorgridcolor": "#506784", "startlinecolor": "#A2B1C6" }, "baxis": { "gridcolor": "#506784", "linecolor": "#506784", "endlinecolor": "#A2B1C6", "minorgridcolor": "#506784", "startlinecolor": "#A2B1C6" } } ], "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": "rgb(17,17,17)", "showland": true, "lakecolor": "rgb(17,17,17)", "landcolor": "rgb(17,17,17)", "showlakes": true, "subunitcolor": "#506784" }, "font": { "color": "#f2f5fa" }, "polar": { "bgcolor": "rgb(17,17,17)", "radialaxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "angularaxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "zerolinecolor": "#C8D4E3", "showbackground": true, "backgroundcolor": "rgb(17,17,17)" }, "yaxis": { "ticks": "", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "zerolinecolor": "#C8D4E3", "showbackground": true, "backgroundcolor": "rgb(17,17,17)" }, "zaxis": { "ticks": "", "gridcolor": "#506784", "gridwidth": 2, "linecolor": "#506784", "zerolinecolor": "#C8D4E3", "showbackground": true, "backgroundcolor": "rgb(17,17,17)" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "gridcolor": "#283442", "linecolor": "#506784", "automargin": true, "zerolinecolor": "#283442", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "gridcolor": "#283442", "linecolor": "#506784", "automargin": true, "zerolinecolor": "#283442", "zerolinewidth": 2 }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "baxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "caxis": { "ticks": "", "gridcolor": "#506784", "linecolor": "#506784" }, "bgcolor": "rgb(17,17,17)" }, "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": "rgb(17,17,17)", "paper_bgcolor": "rgb(17,17,17)", "shapedefaults": { "line": { "width": 0 }, "opacity": 0.4, "fillcolor": "#f2f5fa" }, "sliderdefaults": { "bgcolor": "#C8D4E3", "tickwidth": 0, "bordercolor": "rgb(17,17,17)", "borderwidth": 1 }, "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#f2f5fa", "arrowwidth": 1 }, "updatemenudefaults": { "bgcolor": "#506784", "borderwidth": 0 } }, "themeRef": "PLOTLY_DARK" } } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~Ria113", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/66.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": "2025-08-13 11:23:47", "mapbox_access_tokens": null, "has_password": null, "username": "Ria113", "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": "2025-08-13T08:44:11.801454Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~KevAmi/1.embed", "fid": "KevAmi:1", "filename": "Plot 1", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/KevAmi/1/9_70ZA2863ACR9KM6CXTB9FFC4P9GM45.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/KevAmi/1/2_W3RTH3V2GV8GX5VZV5LVV441QF9KFY.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/KevAmi/1/8_3NZ82WJ9N1PQJAVUTI2YKDJE8U3R0V.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/KevAmi/1/9_70ZA2863ACR9KM6CXTB9FFC4P9GM45.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/KevAmi:1", "plots": "https://api.plotly.com/v2/plots/KevAmi:1", "parent": "https://api.plotly.com/v2/folders/home?user=KevAmi" }, "owner": "KevAmi", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~KevAmi/1/", "world_readable": true, "date_modified": "2025-08-13T08:44:11.815Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~KevAmi/1/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B", "z": "C", "facecolor": "B", "intensity": "C", "vertexcolor": "A" } }, "mode": "markers", "type": "mesh3d", "xsrc": "KevAmi:0:7c113f", "ysrc": "KevAmi:0:fa61d8", "zsrc": "KevAmi:0:1df87a", "facecolorsrc": "KevAmi:0:fa61d8", "intensitysrc": "KevAmi:0:1df87a", "vertexcolorsrc": "KevAmi:0:7c113f" } ], "frames": [], "layout": { "scene": { "camera": { "up": { "x": -0.40824829046386324, "y": -0.40824829046386324, "z": 0.8164965809277258 }, "eye": { "x": 154.45284157292568, "y": -111.62882127356795, "z": -2.1756688548998735 }, "center": { "x": 140.90339109143972, "y": -125.17827175505391, "z": -15.725119336385843 }, "projection": { "type": "orthographic" } }, "domain": { "x": [ 0, 1 ] }, "dragmode": "zoom", "aspectmode": "mode", "aspectratio": { "x": 0.19590677393903197, "y": 1.3713474175732239, "z": 3.7222287048416076 } }, "title": { "text": "Test" }, "xaxis": { "range": [ -1, 6 ], "autorange": true }, "yaxis": { "range": [ -1, 4 ], "autorange": true }, "autosize": true, "dragmode": "zoom" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~KevAmi", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/60.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-6.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-08-13 08:42:11", "mapbox_access_tokens": null, "has_password": null, "username": "KevAmi", "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": "2025-08-13T08:25:54.651299Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~jdm2738/7.embed", "fid": "jdm2738:7", "filename": "Plot 7", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/jdm2738/7/9_SABIHHBLAIKP5HR978EESC6H2TVWLK.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/jdm2738/7/2_4GJQFJ0T3TP3FVGPKY6NLCGLPHNZ1R.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jdm2738/7/8_IA3IDEX3J77PSMVPIGZ2NWK7PQTSSP.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jdm2738/7/9_SABIHHBLAIKP5HR978EESC6H2TVWLK.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/jdm2738:7", "plots": "https://api.plotly.com/v2/plots/jdm2738:7", "parent": "https://api.plotly.com/v2/folders/home?user=jdm2738" }, "owner": "jdm2738", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~jdm2738/7/", "world_readable": true, "date_modified": "2025-08-21T08:33:46.599Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~jdm2738/7/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "A", "y": "B", "z": "C" } }, "mode": "markers", "name": "tracea", "type": "scatter3d", "xsrc": "jdm2738:6:68e25f", "ysrc": "jdm2738:6:93a4bc", "zsrc": "jdm2738:6:6c7890", "marker": { "size": 3, "color": "rgb(137, 199, 117)" } }, { "meta": { "columnNames": { "x": "E", "y": "F", "z": "G" } }, "mode": "markers", "type": "scatter3d", "xsrc": "jdm2738:6:44d3a4", "ysrc": "jdm2738:6:d50568", "zsrc": "jdm2738:6:9b0764", "marker": { "size": 3, "color": "rgb(59, 114, 239)" } }, { "meta": { "columnNames": { "x": "I", "y": "J", "z": "K" } }, "mode": "markers", "type": "scatter3d", "xsrc": "jdm2738:6:35c1c5", "ysrc": "jdm2738:6:fa3d62", "zsrc": "jdm2738:6:d62573", "marker": { "size": 3 } }, { "meta": { "columnNames": { "x": "O", "y": "P", "z": "Q", "text": "N" } }, "mode": "markers+lines+text", "name": "Reference", "type": "scatter3d", "xsrc": "jdm2738:6:38d7cb", "ysrc": "jdm2738:6:899ff9", "zsrc": "jdm2738:6:a1ba32", "marker": { "size": 3, "color": "rgb(212, 29, 82)" }, "textsrc": "jdm2738:6:9e2cb3" } ], "frames": [], "layout": { "scene": { "camera": { "up": { "x": 0, "y": 0, "z": 1 }, "eye": { "x": 1.7015801522057525, "y": -0.9511787219210989, "z": 0.5936511008663371 }, "center": { "x": 0, "y": 0, "z": 0 }, "projection": { "type": "perspective" } }, "aspectmode": "auto", "aspectratio": { "x": 1, "y": 1, "z": 1 } }, "xaxis": { "range": [ -1, 6 ], "autorange": true }, "yaxis": { "range": [ -1, 4 ], "autorange": true }, "autosize": true, "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/~jdm2738", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/18.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-08-11 08:21:19", "mapbox_access_tokens": null, "has_password": null, "username": "jdm2738", "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": "2025-08-13T08:16:41.644007Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~jdm2738/5.embed", "fid": "jdm2738:5", "filename": "Plot 5", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/jdm2738/5/9_3QC6SUK8Q84T6PGM92CT17PWO37V0O.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/jdm2738/5/2_Q4EJXWNCS99WGL1EB9J8FIN36HWC0O.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jdm2738/5/8_EJZ5I0EBZXL4VNQVJ47WETK9GN56XM.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jdm2738/5/9_3QC6SUK8Q84T6PGM92CT17PWO37V0O.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/jdm2738:5", "plots": "https://api.plotly.com/v2/plots/jdm2738:5", "parent": "https://api.plotly.com/v2/folders/home?user=jdm2738" }, "owner": "jdm2738", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 0, "web_url": "https://chart-studio.plotly.com/~jdm2738/5/", "world_readable": true, "date_modified": "2025-08-25T08:25:44.480Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~jdm2738/5/", "current_user_permission": "read", "is_theme": null, "is_template": false, "autosize": true, "caption": "", "figure": { "data": [ { "meta": { "columnNames": { "x": "Levels", "y": "Ref_W", "z": "Meas_H", "text": "CupNo1_W", "marker": { "color": "Ref_H" } } }, "mode": "markers", "name": "Reference", "type": "scatter3d", "xsrc": "jdm2738:4:72777a", "ysrc": "jdm2738:4:51e3f1", "zsrc": "jdm2738:4:6f379e", "scene": "scene", "marker": { "line": { "color": "transparent" }, "meta": { "columnNames": { "color": "Ref_H" } }, "size": 3, "color": "rgba(191,56,42,1)", "fillcolor": "rgba(191,56,42,0.5)" }, "error_x": { "type": "percent", "color": "rgba(191,56,42,1)", "value": 10, "width": 0, "visible": false, "symmetric": true, "thickness": 2 }, "textsrc": "jdm2738:4:cec8d7", "hoverinfo": "x+y+z+text+name", "hoverlabel": { "align": "left", "namelength": 15 }, "hovertemplate": "", "autocolorscale": false }, { "meta": { "columnNames": { "x": "Meas_V", "y": "Meas_W", "z": "Meas_avg_H" } }, "mode": "markers", "name": "Measured", "type": "scatter3d", "xsrc": "jdm2738:4:3c9806", "ysrc": "jdm2738:4:10ecf3", "zsrc": "jdm2738:4:79019e", "marker": { "line": { "color": "transparent" }, "size": 3, "color": "rgba(12,75,142,1)", "fillcolor": "rgba(12,75,142,0.5)" } }, { "meta": { "columnNames": { "x": "Meas_avg_V", "y": "Meas_avg_W", "z": "CupNo1_H", "text": "Levels" } }, "mode": "markers", "name": "Meas_Avg", "type": "scatter3d", "xsrc": "jdm2738:4:4bb2aa", "ysrc": "jdm2738:4:bc9fbc", "zsrc": "jdm2738:4:2609a7", "marker": { "size": 3 }, "error_x": { "type": "percent", "color": "#2ca02c", "value": 10, "width": 0, "visible": false, "symmetric": false, "thickness": 2, "valueminus": 10 }, "error_y": { "type": "percent", "color": "#2ca02c", "value": 10, "width": 0, "visible": false, "symmetric": true, "thickness": 2 }, "error_z": { "type": "percent", "color": "#2ca02c", "value": 10, "width": 0, "visible": false, "symmetric": true, "thickness": 2 }, "opacity": 1, "textsrc": "jdm2738:4:72777a", "hoverinfo": "x+y+z+text+name", "hoverlabel": { "align": "left", "namelength": 22 }, "showlegend": true, "hovertemplate": "" } ], "frames": [], "layout": { "scene": { "xaxis": { "type": "linear", "title": { "text": "H" }, "showspikes": true }, "yaxis": { "type": "linear", "title": { "text": "S" }, "showspikes": true }, "zaxis": { "type": "linear", "title": { "text": "V" }, "showspikes": true }, "camera": { "up": { "x": 0, "y": 0, "z": 1 }, "eye": { "x": 2.1900361244179245, "y": -1.2754063575108763, "z": 0.985101546574759 }, "center": { "x": 0.00434945812854754, "y": 0.027133895685371005, "z": -0.0672484226052952 }, "projection": { "type": "perspective" } }, "hovermode": "closest", "aspectmode": "auto", "aspectratio": { "x": 1, "y": 1, "z": 1 } }, "title": { "text": "RGB - CH2 - CalCupNo(Level)#2" }, "xaxis": { "domain": [ 0, 1 ] }, "yaxis": { "domain": [ 0, 1 ] }, "margin": { "b": 40, "l": 60, "r": 10, "t": 25 }, "autosize": true } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~jdm2738", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/18.jpg", "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg", "bio": "", "nickname": "", "website": "", "stream_tokens": null, "feature_set_id": null, "csrf_token": null, "date_joined": "2025-08-11 08:21:19", "mapbox_access_tokens": null, "has_password": null, "username": "jdm2738", "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": "2025-08-13T08:13:39.957912Z", "comments": { "results": [], "count": 0 }, "parented": true, "embed_url": "https://chart-studio.plotly.com/~wizman26/835.embed", "fid": "wizman26:835", "filename": "SB_212DTE_JUL", "filetype": "plot", "img_url": "https://storage.googleapis.com/plotly-prod-images/wizman26/835/9_3E4XEBHC57TG5I5EDC1F7CWDRWDTAW.png", "image_urls": { "default": "https://storage.googleapis.com/plotly-prod-images/wizman26/835/2_BLQABEPHDG48M6SK1CNPCPUHSSGO39.png", "block-thumb": "https://storage.googleapis.com/plotly-prod-images/wizman26/835/8_ZEK7CMNE1UUVZ4SROGENN0D1YO3WR8.png", "list-thumb": "https://storage.googleapis.com/plotly-prod-images/wizman26/835/9_3E4XEBHC57TG5I5EDC1F7CWDRWDTAW.png" }, "api_urls": { "files": "https://api.plotly.com/v2/files/wizman26:835", "plots": "https://api.plotly.com/v2/plots/wizman26:835", "parent": "https://api.plotly.com/v2/folders/home?user=wizman26" }, "owner": "wizman26", "parent": -1, "preview": "", "referencers": [], "references": [], "title": "", "views": 1, "web_url": "https://chart-studio.plotly.com/~wizman26/835/", "world_readable": true, "date_modified": "2025-08-13T08:13:39.979Z", "stars": { "results": [], "count": 0 }, "collaborators": { "results": [], "count": 0 }, "subfolder_count": null, "refresh_interval": null, "organize_view_url": "https://chart-studio.plotly.com/~wizman26/835/", "current_user_permission": "read", "is_theme": null, "is_template": null, "autosize": true, "caption": "", "figure": { "data": [ { "line": { "dash": "solid", "color": "rgba(255, 153, 51, 1.0)", "shape": "linear", "width": 1.3 }, "mode": "lines", "name": "SB_212DTE_JUL", "text": "", "type": "scatter", "xsrc": "wizman26:834:692301", "ysrc": "wizman26:834:d4d822" } ], "layout": { "title": { "font": { "color": "#4D5663" }, "text": "SB_212DTE_JUL" }, "xaxis": { "title": { "font": { "color": "#4D5663" }, "text": "" }, "showgrid": true, "tickfont": { "color": "#4D5663" }, "gridcolor": "#E1E5ED", "zerolinecolor": "#E1E5ED" }, "yaxis": { "title": { "font": { "color": "#4D5663" }, "text": "" }, "showgrid": true, "tickfont": { "color": "#4D5663" }, "gridcolor": "#E1E5ED", "zerolinecolor": "#E1E5ED" }, "legend": { "font": { "color": "#4D5663" }, "bgcolor": "#F5F6F9" }, "template": { "data": { "bar": [ { "type": "bar", "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } }, "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" } } ], "pie": [ { "type": "pie", "automargin": true } ], "table": [ { "type": "table", "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } } } ], "carpet": [ { "type": "carpet", "aaxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "#2a3f5f", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "gridcolor": "white", "linecolor": "white", "endlinecolor": "#2a3f5f", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" } } ], "mesh3d": [ { "type": "mesh3d", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "contour": [ { "type": "contour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "heatmap": [ { "type": "heatmap", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "scatter": [ { "type": "scatter", "fillpattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } ], "surface": [ { "type": "surface", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "barpolar": [ { "type": "barpolar", "marker": { "line": { "color": "#E5ECF6", "width": 0.5 }, "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } } ], "heatmapgl": [ { "type": "heatmapgl", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "histogram": [ { "type": "histogram", "marker": { "pattern": { "size": 10, "fillmode": "overlay", "solidity": 0.2 } } } ], "parcoords": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "parcoords" } ], "scatter3d": [ { "line": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "type": "scatter3d", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattergl": [ { "type": "scattergl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "choropleth": [ { "type": "choropleth", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattergeo": [ { "type": "scattergeo", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2d": [ { "type": "histogram2d", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ], "scatterpolar": [ { "type": "scatterpolar", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "contourcarpet": [ { "type": "contourcarpet", "colorbar": { "ticks": "", "outlinewidth": 0 } } ], "scattercarpet": [ { "type": "scattercarpet", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scattermapbox": [ { "type": "scattermapbox", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterpolargl": [ { "type": "scatterpolargl", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "scatterternary": [ { "type": "scatterternary", "marker": { "colorbar": { "ticks": "", "outlinewidth": 0 } } } ], "histogram2dcontour": [ { "type": "histogram2dcontour", "colorbar": { "ticks": "", "outlinewidth": 0 }, "colorscale": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] } ] }, "layout": { "geo": { "bgcolor": "white", "showland": true, "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "subunitcolor": "white" }, "font": { "color": "#2a3f5f" }, "polar": { "bgcolor": "#E5ECF6", "radialaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "angularaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" } }, "scene": { "xaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" }, "yaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" }, "zaxis": { "ticks": "", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "zerolinecolor": "white", "showbackground": true, "backgroundcolor": "#E5ECF6" } }, "title": { "x": 0.05 }, "xaxis": { "ticks": "", "title": { "standoff": 15 }, "gridcolor": "white", "linecolor": "white", "automargin": true, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "ticks": "", "title": { "standoff": 15 }, "gridcolor": "white", "linecolor": "white", "automargin": true, "zerolinecolor": "white", "zerolinewidth": 2 }, "mapbox": { "style": "light" }, "ternary": { "aaxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "baxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "caxis": { "ticks": "", "gridcolor": "white", "linecolor": "white" }, "bgcolor": "#E5ECF6" }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "coloraxis": { "colorbar": { "ticks": "", "outlinewidth": 0 } }, "hovermode": "closest", "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ], "sequentialminus": [ [ 0.0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1.0, "#f0f921" ] ] }, "hoverlabel": { "align": "left" }, "plot_bgcolor": "#E5ECF6", "paper_bgcolor": "white", "shapedefaults": { "line": { "color": "#2a3f5f" } }, "autotypenumbers": "strict", "annotationdefaults": { "arrowhead": 0, "arrowcolor": "#2a3f5f", "arrowwidth": 1 } } }, "plot_bgcolor": "#F5F6F9", "paper_bgcolor": "#F5F6F9" } }, "height": null, "width": null, "user": { "profile_url": "https://chart-studio.plotly.com/~wizman26", "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/81.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": "2024-08-08 10:55:26", "mapbox_access_tokens": null, "has_password": null, "username": "wizman26", "email": null, "is_active": null, "readonly": null, "is_dash_creator": null, "dash_created_count": null, "is_chart_creator": null, "charts_created_count": null } } ] }{ "next": "