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

{
    "next": "https://api.plotly.com/v2/plots?cursor=cD0yMDI1LTA4LTIwKzExJTNBMzMlM0EyNC45MDA4NDklMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNS0wOC0yMCsxNCUzQTU5JTNBNDEuMjQ3ODUxJTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-08-20T14:59:41.247851Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~JuliaWKosmos/10.embed",
            "fid": "JuliaWKosmos:10",
            "filename": "WZORNIK copy",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/JuliaWKosmos/10/9_66PX06SV8HYTT1NQ6ZENDQOEAWOOH3.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/JuliaWKosmos/10/2_JJSSGM6GNYBLLRW00DRN1LZH0B3F4N.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/JuliaWKosmos/10/8_8LS7U095RVUZE3GWNEDAJQSJP67N3K.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/JuliaWKosmos/10/9_66PX06SV8HYTT1NQ6ZENDQOEAWOOH3.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/JuliaWKosmos:10",
                "plots": "https://api.plotly.com/v2/plots/JuliaWKosmos:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=JuliaWKosmos"
            },
            "owner": "JuliaWKosmos",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~JuliaWKosmos/10/",
            "world_readable": true,
            "date_modified": "2025-08-20T14:59:41.763Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~JuliaWKosmos/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": true,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "r": "G",
                                "text": "A",
                                "theta": "H",
                                "marker": {
                                    "color": "D"
                                },
                                "textposition": ""
                            }
                        },
                        "mode": "markers",
                        "rsrc": "JuliaWKosmos:9:c6ba07",
                        "type": "scatterpolar",
                        "marker": {
                            "cmax": 100,
                            "cmin": 0,
                            "meta": {
                                "columnNames": {
                                    "color": "D"
                                }
                            },
                            "size": 7,
                            "cauto": false,
                            "colorbar": {
                                "title": {
                                    "text": "L*"
                                }
                            },
                            "colorsrc": "JuliaWKosmos:9:133d97",
                            "showscale": true,
                            "colorscale": [
                                [
                                    0,
                                    "#ffffff"
                                ],
                                [
                                    0.125,
                                    "#f0f0f0"
                                ],
                                [
                                    0.25,
                                    "#d9d9d9"
                                ],
                                [
                                    0.375,
                                    "#bdbdbd"
                                ],
                                [
                                    0.5,
                                    "#969696"
                                ],
                                [
                                    0.625,
                                    "#737373"
                                ],
                                [
                                    0.75,
                                    "#525252"
                                ],
                                [
                                    0.875,
                                    "#252525"
                                ],
                                [
                                    1,
                                    "#000000"
                                ]
                            ],
                            "reversescale": true
                        },
                        "hoveron": "points",
                        "textsrc": "JuliaWKosmos:9:10fb38",
                        "textfont": {
                            "size": 3
                        },
                        "thetasrc": "JuliaWKosmos:9:87689b",
                        "hoverinfo": "text",
                        "hoverlabel": {
                            "align": "auto"
                        },
                        "textposition": "middle left",
                        "texttemplate": "",
                        "hovertemplate": "",
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 7
                    },
                    "polar": {
                        "radialaxis": {
                            "type": "linear",
                            "range": [
                                0,
                                15.143152454780362
                            ],
                            "title": {
                                "text": "C*ab"
                            },
                            "autorange": true
                        },
                        "angularaxis": {
                            "type": "linear",
                            "rotation": 5.331316374874003
                        }
                    },
                    "title": {
                        "text": "Indygo SPEX"
                    },
                    "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"
                    },
                    "clickmode": "none"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~JuliaWKosmos",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-19 12:48:06",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "JuliaWKosmos",
                "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-20T14:53:03.919023Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~xjsrxy/1.embed",
            "fid": "xjsrxy:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/xjsrxy/1/9_WPTVVHZUVZ7XVUEJYTBVKGJ3OD23RB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/xjsrxy/1/2_VFSMY1NAJP0LM8E7D0WRNAQUQSOGVX.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/xjsrxy/1/8_79BWKM76FUV8HAQXYPVSSWMCI1Y67V.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/xjsrxy/1/9_WPTVVHZUVZ7XVUEJYTBVKGJ3OD23RB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/xjsrxy:1",
                "plots": "https://api.plotly.com/v2/plots/xjsrxy:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=xjsrxy"
            },
            "owner": "xjsrxy",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~xjsrxy/1/",
            "world_readable": true,
            "date_modified": "2025-08-20T14:53:03.931Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~xjsrxy/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "y": "Var1",
                                "text": ""
                            }
                        },
                        "mode": "markers",
                        "type": "box",
                        "ysrc": "xjsrxy:0:60dd72",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "color": "rgb(95, 154, 245)"
                        },
                        "boxpoints": false,
                        "fillcolor": "rgb(145, 220, 236)",
                        "hoverinfo": "none",
                        "hoverlabel": {
                            "align": "left"
                        },
                        "showlegend": false,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Var1",
                                "y": "Var3"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "xjsrxy:0:60dd72",
                        "ysrc": "xjsrxy:0:8064ff",
                        "width": 1,
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 5,
                            "color": "rgb(95, 154, 245)",
                            "symbol": "circle",
                            "maxdisplayed": 0
                        },
                        "hoverinfo": "none",
                        "showlegend": false,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Var1",
                                "y": "Var2"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "xjsrxy:0:60dd72",
                        "ysrc": "xjsrxy:0:78824b",
                        "width": 1,
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 5,
                            "color": "rgb(95, 154, 245)",
                            "maxdisplayed": 0
                        },
                        "hoverinfo": "none",
                        "showlegend": false,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Var2",
                                "y": "Var1"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "xjsrxy:0:78824b",
                        "ysrc": "xjsrxy:0:60dd72",
                        "width": 1,
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 5,
                            "color": "rgb(95, 154, 245)",
                            "maxdisplayed": 0
                        },
                        "showlegend": false,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "y": "Var2"
                            }
                        },
                        "mode": "markers",
                        "type": "box",
                        "ysrc": "xjsrxy:0:78824b",
                        "xaxis": "x7",
                        "yaxis": "y7",
                        "marker": {
                            "color": "rgb(95, 154, 245)"
                        },
                        "boxpoints": false,
                        "fillcolor": "rgb(145, 220, 236)",
                        "showlegend": false,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Var2",
                                "y": "Var3"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "xjsrxy:0:78824b",
                        "ysrc": "xjsrxy:0:8064ff",
                        "width": 1,
                        "xaxis": "x8",
                        "yaxis": "y8",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 5,
                            "color": "rgb(95, 154, 245)",
                            "maxdisplayed": 0
                        },
                        "boxpoints": false,
                        "showlegend": false
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Var3",
                                "y": "Var1"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "xjsrxy:0:8064ff",
                        "ysrc": "xjsrxy:0:60dd72",
                        "width": 1,
                        "xaxis": "x9",
                        "yaxis": "y9",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 5,
                            "color": "rgb(95, 154, 245)",
                            "maxdisplayed": 0
                        },
                        "showlegend": false,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Var3",
                                "y": "Var2"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "xjsrxy:0:8064ff",
                        "ysrc": "xjsrxy:0:78824b",
                        "width": 1,
                        "xaxis": "x10",
                        "yaxis": "y10",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 5,
                            "color": "rgb(95, 154, 245)",
                            "maxdisplayed": 0
                        },
                        "showlegend": false,
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "scene": {
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": -0.006543052125240266,
                                "y": 1.6228977265964895,
                                "z": 1.433059718740581
                            },
                            "center": {
                                "x": 0,
                                "y": 0,
                                "z": 0
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "text": "Click to enter Plot title"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.029445371689514943,
                            1.169554628310485
                        ],
                        "title": {
                            "font": {
                                "size": 11
                            }
                        },
                        "domain": [
                            0.32608695652173914,
                            0.6684782608695652
                        ],
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false,
                        "rangeslider": {
                            "range": [
                                0.029445371689514957,
                                1.169554628310485
                            ],
                            "yaxis": {},
                            "yaxis4": {},
                            "yaxis6": {},
                            "yaxis7": {},
                            "yaxis8": {},
                            "yaxis9": {},
                            "visible": false,
                            "yaxis10": {},
                            "autorange": true
                        },
                        "showticklabels": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.03630530359666606,
                            1.6253053035966665
                        ],
                        "title": {
                            "font": {
                                "size": 11
                            }
                        },
                        "domain": [
                            0.7180387942910674,
                            1
                        ],
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false,
                        "rangeslider": {
                            "visible": false
                        },
                        "showticklabels": false
                    },
                    "legend": {
                        "title": {
                            "text": "<br>"
                        }
                    },
                    "xaxis2": {
                        "side": "top",
                        "type": "category",
                        "range": [
                            -0.5,
                            0.5
                        ],
                        "title": {
                            "font": {
                                "size": 11
                            }
                        },
                        "anchor": "free",
                        "domain": [
                            0,
                            0.29891304347826086
                        ],
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false,
                        "overlaying": false,
                        "rangeslider": {
                            "range": [
                                -0.5,
                                0.5
                            ],
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": false
                    },
                    "xaxis4": {
                        "side": "top",
                        "type": "linear",
                        "range": [
                            0.026628857030856268,
                            1.1723711429691437
                        ],
                        "title": {
                            "font": {
                                "size": 11
                            }
                        },
                        "domain": [
                            0.7065217391304348,
                            0.9963768115942029
                        ],
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false,
                        "rangeslider": {
                            "range": [
                                0.026628857030856254,
                                1.1723711429691437
                            ],
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": false
                    },
                    "xaxis6": {
                        "side": "top",
                        "type": "linear",
                        "range": [
                            -0.0016980162986387493,
                            1.5906980162986395
                        ],
                        "title": {
                            "font": {
                                "size": 11
                            }
                        },
                        "domain": [
                            0,
                            0.29347826086956524
                        ],
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false,
                        "overlaying": false,
                        "rangeslider": {
                            "range": [
                                -0.0016980162986388325,
                                1.590698016298639
                            ],
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": false
                    },
                    "xaxis7": {
                        "side": "top",
                        "type": "category",
                        "range": [
                            -0.5,
                            0.5
                        ],
                        "title": {
                            "font": {
                                "size": 11
                            }
                        },
                        "domain": [
                            0.32608695652173914,
                            0.6485507246376812
                        ],
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false,
                        "overlaying": false,
                        "rangeslider": {
                            "range": [
                                -0.5,
                                0.5
                            ],
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": false
                    },
                    "xaxis8": {
                        "side": "top",
                        "type": "linear",
                        "range": [
                            -0.0035461587852699816,
                            1.5925461587852707
                        ],
                        "title": {
                            "font": {
                                "size": 11
                            },
                            "text": "Var3"
                        },
                        "domain": [
                            0.7264492753623188,
                            1
                        ],
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false,
                        "overlaying": false,
                        "rangeslider": {
                            "range": [
                                -0.0035461587852700788,
                                1.5925461587852703
                            ],
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": false
                    },
                    "xaxis9": {
                        "side": "top",
                        "type": "linear",
                        "range": [
                            0.05215388923111386,
                            0.9398461107688862
                        ],
                        "title": {
                            "font": {
                                "size": 11
                            },
                            "text": "Var1"
                        },
                        "domain": [
                            0,
                            0.2898550724637681
                        ],
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false,
                        "overlaying": false,
                        "rangeslider": {
                            "range": [
                                0.05215388923111385,
                                0.9398461107688861
                            ],
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": false
                    },
                    "yaxis2": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            0.04449999999999993,
                            1.1544999999999999
                        ],
                        "title": {
                            "font": {
                                "size": 11
                            },
                            "text": "Click to enter Y axis title"
                        },
                        "anchor": "free",
                        "domain": [
                            0.6953146525596517,
                            1
                        ],
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false,
                        "overlaying": false,
                        "rangeslider": {
                            "visible": false
                        },
                        "showticklabels": false
                    },
                    "yaxis4": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            0.03597706360175784,
                            0.956022936398242
                        ],
                        "title": {
                            "font": {
                                "size": 11
                            }
                        },
                        "domain": [
                            0.6924698297239213,
                            1
                        ],
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false,
                        "rangeslider": {
                            "visible": false
                        },
                        "showticklabels": false
                    },
                    "yaxis6": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            0.008172885380489547,
                            1.1908271146195104
                        ],
                        "title": {
                            "font": {
                                "size": 11
                            }
                        },
                        "domain": [
                            0.33664655314928094,
                            0.6633534468507191
                        ],
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false,
                        "overlaying": false,
                        "rangeslider": {
                            "visible": false
                        },
                        "showticklabels": false
                    },
                    "yaxis7": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            0.02283333333333326,
                            1.5661666666666665
                        ],
                        "title": {
                            "font": {
                                "size": 11
                            }
                        },
                        "domain": [
                            0.31321981594753956,
                            0.6612112194853144
                        ],
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false,
                        "overlaying": false,
                        "rangeslider": {
                            "visible": false
                        },
                        "showticklabels": false
                    },
                    "yaxis8": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            0.040827350856019295,
                            0.9511726491439807
                        ],
                        "title": {
                            "font": {
                                "size": 11
                            }
                        },
                        "domain": [
                            0.31321981594753956,
                            0.6761379291342922
                        ],
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false,
                        "overlaying": false,
                        "rangeslider": {
                            "visible": false
                        },
                        "showticklabels": false
                    },
                    "yaxis9": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            0.004254692184074316,
                            1.1947453078159256
                        ],
                        "title": {
                            "font": {
                                "size": 11
                            }
                        },
                        "domain": [
                            0,
                            0.2968534744034826
                        ],
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false,
                        "overlaying": false,
                        "rangeslider": {
                            "visible": false
                        },
                        "showticklabels": false
                    },
                    "xaxis10": {
                        "side": "top",
                        "type": "linear",
                        "range": [
                            0.05359445275104613,
                            0.9384055472489539
                        ],
                        "title": {
                            "font": {
                                "size": 11
                            },
                            "text": "Var2"
                        },
                        "domain": [
                            0.32971014492753625,
                            0.6521739130434783
                        ],
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false,
                        "overlaying": false,
                        "rangeslider": {
                            "range": [
                                0.05359445275104612,
                                0.9384055472489539
                            ],
                            "visible": false,
                            "autorange": true
                        },
                        "showticklabels": false
                    },
                    "yaxis10": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            -0.03583313542446431,
                            1.624833135424464
                        ],
                        "title": {
                            "font": {
                                "size": 11
                            }
                        },
                        "domain": [
                            0,
                            0.28406899211990955
                        ],
                        "showgrid": false,
                        "showline": true,
                        "zeroline": false,
                        "autorange": false,
                        "overlaying": false,
                        "rangeslider": {
                            "visible": false
                        },
                        "showticklabels": false
                    },
                    "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"
                    },
                    "showlegend": false
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~xjsrxy",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/46.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-7.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-20 05:44:56",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "xjsrxy",
                "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-20T14:27:30.667800Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~abhishek.karn025/23.embed",
            "fid": "abhishek.karn025:23",
            "filename": "complex-dummy-report-(v5)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/abhishek.karn025/23/9_MSC7B7RF14WZ5H1K3ON156BZVS057L.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/abhishek.karn025/23/2_NPYATYJNOHONHJRVZYJ3GAODO4LR2L.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/abhishek.karn025/23/8_W6D9Y837IUBC86ROPLM72U0NBA79EP.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/abhishek.karn025/23/9_MSC7B7RF14WZ5H1K3ON156BZVS057L.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/abhishek.karn025:23",
                "plots": "https://api.plotly.com/v2/plots/abhishek.karn025:23",
                "parent": "https://api.plotly.com/v2/folders/home?user=abhishek.karn025"
            },
            "owner": "abhishek.karn025",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~abhishek.karn025/23/",
            "world_readable": true,
            "date_modified": "2025-08-20T14:30:16.985Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~abhishek.karn025/23/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#636efa"
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "abhishek.karn025:25:b70c9b",
                        "ysrc": "abhishek.karn025:25:db006b",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "",
                        "orientation": "v",
                        "hovertemplate": "Year=%{x}<br>Sales=%{y}<extra></extra>"
                    },
                    {
                        "name": "Electronics",
                        "type": "bar",
                        "xsrc": "abhishek.karn025:25:8bf9f9",
                        "ysrc": "abhishek.karn025:25:e18bba",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Electronics",
                        "offsetgroup": "Electronics",
                        "orientation": "v",
                        "textposition": "auto",
                        "texttemplate": "%{y}",
                        "hovertemplate": "Category=Electronics<br>Month=%{x}<br>Sales=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Furniture",
                        "type": "bar",
                        "xsrc": "abhishek.karn025:25:9d78f4",
                        "ysrc": "abhishek.karn025:25:0bd5d2",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Furniture",
                        "offsetgroup": "Furniture",
                        "orientation": "v",
                        "textposition": "auto",
                        "texttemplate": "%{y}",
                        "hovertemplate": "Category=Furniture<br>Month=%{x}<br>Sales=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Grocery",
                        "type": "bar",
                        "xsrc": "abhishek.karn025:25:101803",
                        "ysrc": "abhishek.karn025:25:f8e345",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Grocery",
                        "offsetgroup": "Grocery",
                        "orientation": "v",
                        "textposition": "auto",
                        "texttemplate": "%{y}",
                        "hovertemplate": "Category=Grocery<br>Month=%{x}<br>Sales=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "Office",
                        "type": "bar",
                        "xsrc": "abhishek.karn025:25:18b123",
                        "ysrc": "abhishek.karn025:25:36a938",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "Office",
                        "offsetgroup": "Office",
                        "orientation": "v",
                        "textposition": "auto",
                        "texttemplate": "%{y}",
                        "hovertemplate": "Category=Office<br>Month=%{x}<br>Sales=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "0",
                        "type": "heatmap",
                        "xsrc": "abhishek.karn025:25:a039ba",
                        "ysrc": "abhishek.karn025:25:7e4726",
                        "zsrc": "abhishek.karn025:25:168ebf",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "colorbar": {
                            "len": 0.75,
                            "title": {
                                "text": "Sales"
                            },
                            "thickness": 12
                        },
                        "coloraxis": "coloraxis",
                        "hovertemplate": "Region: %{x}<br>Category: %{y}<br>Sales: %{z}<extra></extra>"
                    },
                    {
                        "name": "",
                        "type": "treemap",
                        "domain": {
                            "x": [
                                0.0,
                                0.2771830985915493
                            ],
                            "y": [
                                0.33459459459459456,
                                0.6070270270270269
                            ]
                        },
                        "idssrc": "abhishek.karn025:25:e3cb1c",
                        "labelssrc": "abhishek.karn025:25:1ba722",
                        "valuessrc": "abhishek.karn025:25:5e109b",
                        "parentssrc": "abhishek.karn025:25:ea34ac",
                        "branchvalues": "total",
                        "hovertemplate": "labels=%{label}<br>Sales=%{value}<br>parent=%{parent}<br>id=%{id}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#636efa"
                        },
                        "mode": "lines+markers",
                        "name": "East",
                        "type": "scatter",
                        "xsrc": "abhishek.karn025:25:e157e4",
                        "ysrc": "abhishek.karn025:25:d6579d",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "East",
                        "orientation": "v",
                        "hovertemplate": "Region=East<br>Year=%{x}<br>MarginPct=%{y}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#EF553B"
                        },
                        "mode": "lines+markers",
                        "name": "North",
                        "type": "scatter",
                        "xsrc": "abhishek.karn025:25:8e84e0",
                        "ysrc": "abhishek.karn025:25:123e87",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "North",
                        "orientation": "v",
                        "hovertemplate": "Region=North<br>Year=%{x}<br>MarginPct=%{y}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#00cc96"
                        },
                        "mode": "lines+markers",
                        "name": "South",
                        "type": "scatter",
                        "xsrc": "abhishek.karn025:25:0f92b1",
                        "ysrc": "abhishek.karn025:25:9f7ca2",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "South",
                        "orientation": "v",
                        "hovertemplate": "Region=South<br>Year=%{x}<br>MarginPct=%{y}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#ab63fa"
                        },
                        "mode": "lines+markers",
                        "name": "West",
                        "type": "scatter",
                        "xsrc": "abhishek.karn025:25:60b563",
                        "ysrc": "abhishek.karn025:25:8b5634",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "West",
                        "orientation": "v",
                        "hovertemplate": "Region=West<br>Year=%{x}<br>MarginPct=%{y}<extra></extra>"
                    },
                    {
                        "name": "",
                        "type": "bar",
                        "xsrc": "abhishek.karn025:25:406550",
                        "ysrc": "abhishek.karn025:25:e799fc",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": false,
                        "legendgroup": "",
                        "offsetgroup": "",
                        "orientation": "v",
                        "textposition": "auto",
                        "texttemplate": "%{y}",
                        "hovertemplate": "State=%{x}<br>Sales=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "type": "table",
                        "cells": {
                            "align": "left",
                            "valuessrc": "abhishek.karn025:25:0c579f"
                        },
                        "domain": {
                            "x": [
                                0.0,
                                0.2771830985915493
                            ],
                            "y": [
                                0.0,
                                0.19459459459459455
                            ]
                        },
                        "header": {
                            "align": "left",
                            "valuessrc": "abhishek.karn025:25:3d8b71"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "x": 0.02,
                        "text": "Complex Dummy Report (v5)"
                    },
                    "width": 1660,
                    "xaxis": {
                        "anchor": "y",
                        "domain": [
                            0.0,
                            0.2771830985915493
                        ]
                    },
                    "yaxis": {
                        "anchor": "x",
                        "domain": [
                            0.747027027027027,
                            1.0
                        ]
                    },
                    "height": 2072,
                    "legend": {
                        "x": 0.5,
                        "y": -0.1,
                        "xanchor": "center",
                        "yanchor": "top",
                        "orientation": "h"
                    },
                    "margin": {
                        "b": 110,
                        "l": 70,
                        "r": 130,
                        "t": 96
                    },
                    "xaxis2": {
                        "anchor": "y2",
                        "domain": [
                            0.3671830985915493,
                            0.5981690140845071
                        ]
                    },
                    "xaxis3": {
                        "anchor": "y3",
                        "domain": [
                            0.6881690140845071,
                            1.0
                        ]
                    },
                    "xaxis4": {
                        "anchor": "y4",
                        "domain": [
                            0.3671830985915493,
                            0.5981690140845071
                        ]
                    },
                    "xaxis5": {
                        "anchor": "y5",
                        "domain": [
                            0.6881690140845071,
                            1.0
                        ]
                    },
                    "xaxis6": {
                        "anchor": "y6",
                        "domain": [
                            0.3671830985915493,
                            0.5981690140845071
                        ]
                    },
                    "xaxis7": {
                        "anchor": "y7",
                        "domain": [
                            0.6881690140845071,
                            1.0
                        ]
                    },
                    "yaxis2": {
                        "anchor": "x2",
                        "domain": [
                            0.747027027027027,
                            1.0
                        ]
                    },
                    "yaxis3": {
                        "anchor": "x3",
                        "domain": [
                            0.747027027027027,
                            1.0
                        ]
                    },
                    "yaxis4": {
                        "title": {
                            "text": "Margin %",
                            "standoff": 12
                        },
                        "anchor": "x4",
                        "domain": [
                            0.33459459459459456,
                            0.6070270270270269
                        ]
                    },
                    "yaxis5": {
                        "anchor": "x5",
                        "domain": [
                            0.33459459459459456,
                            0.6070270270270269
                        ]
                    },
                    "yaxis6": {
                        "anchor": "x6",
                        "domain": [
                            0.0,
                            0.19459459459459455
                        ]
                    },
                    "yaxis7": {
                        "anchor": "x7",
                        "domain": [
                            0.0,
                            0.19459459459459455
                        ]
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "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": "#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
                                    },
                                    "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": "white",
                                            "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": "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": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "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",
                                "#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": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": 0.13859154929577466,
                            "y": 1.0,
                            "font": {
                                "size": 13
                            },
                            "text": "Total Sales by Year",
                            "xref": "paper",
                            "yref": "paper",
                            "yshift": 16,
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.4826760563380282,
                            "y": 1.0,
                            "font": {
                                "size": 13
                            },
                            "text": "Monthly Sales by Category (stacked)",
                            "xref": "paper",
                            "yref": "paper",
                            "yshift": 16,
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.8440845070422537,
                            "y": 1.0,
                            "font": {
                                "size": 13
                            },
                            "text": "Heatmap: Region × Category (Sales)",
                            "xref": "paper",
                            "yref": "paper",
                            "yshift": 16,
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.13859154929577466,
                            "y": 0.6070270270270269,
                            "font": {
                                "size": 13
                            },
                            "text": "Treemap by Region and State",
                            "xref": "paper",
                            "yref": "paper",
                            "yshift": 16,
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.4826760563380282,
                            "y": 0.6070270270270269,
                            "font": {
                                "size": 13
                            },
                            "text": "Profit Margin by Year (Region)",
                            "xref": "paper",
                            "yref": "paper",
                            "yshift": 16,
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.8440845070422537,
                            "y": 0.6070270270270269,
                            "font": {
                                "size": 13
                            },
                            "text": "Top 5 States by Sales",
                            "xref": "paper",
                            "yref": "paper",
                            "yshift": 16,
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.13859154929577466,
                            "y": 0.19459459459459455,
                            "font": {
                                "size": 13
                            },
                            "text": "Data table preview",
                            "xref": "paper",
                            "yref": "paper",
                            "yshift": 16,
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": 2072,
            "width": 1660,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~abhishek.karn025",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/8.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-19 08:26:37",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "abhishek.karn025",
                "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-20T14:12:00.094312Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~abhishek.karn025/20.embed",
            "fid": "abhishek.karn025:20",
            "filename": "dummy-report-(v5)",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/abhishek.karn025/20/9_9MWZE44FIRR356UB1C6WFNPDWHXXR3.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/abhishek.karn025/20/2_5B9APW74ANKDQOUDTWVN7664KBGJ93.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/abhishek.karn025/20/8_58YLTS60A21A3YN74UCHWSS8FOYOH8.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/abhishek.karn025/20/9_9MWZE44FIRR356UB1C6WFNPDWHXXR3.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/abhishek.karn025:20",
                "plots": "https://api.plotly.com/v2/plots/abhishek.karn025:20",
                "parent": "https://api.plotly.com/v2/folders/home?user=abhishek.karn025"
            },
            "owner": "abhishek.karn025",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~abhishek.karn025/20/",
            "world_readable": true,
            "date_modified": "2025-08-20T14:14:56.010Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~abhishek.karn025/20/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#636efa"
                        },
                        "mode": "lines+markers",
                        "name": "",
                        "type": "scatter",
                        "xsrc": "abhishek.karn025:21:ba1ece",
                        "ysrc": "abhishek.karn025:21:a728a4",
                        "xaxis": "x",
                        "yaxis": "y",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": false,
                        "legendgroup": "",
                        "orientation": "v",
                        "hovertemplate": "Year=%{x}<br>Sales=%{y}<extra></extra>"
                    },
                    {
                        "name": "0",
                        "type": "heatmap",
                        "xsrc": "abhishek.karn025:21:d51b83",
                        "ysrc": "abhishek.karn025:21:a51b50",
                        "zsrc": "abhishek.karn025:21:e36145",
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "colorbar": {
                            "len": 0.75,
                            "title": {
                                "text": "Sales"
                            },
                            "thickness": 12
                        },
                        "coloraxis": "coloraxis",
                        "hovertemplate": "Year: %{x}<br>State: %{y}<br>Sales: %{z}<extra></extra>"
                    },
                    {
                        "name": "AP",
                        "type": "bar",
                        "xsrc": "abhishek.karn025:21:e3cbc4",
                        "ysrc": "abhishek.karn025:21:6c64b2",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "AP",
                        "offsetgroup": "AP",
                        "orientation": "v",
                        "textposition": "auto",
                        "texttemplate": "%{y}",
                        "hovertemplate": "State=AP<br>Year=%{x}<br>Sales=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "KA",
                        "type": "bar",
                        "xsrc": "abhishek.karn025:21:1d7904",
                        "ysrc": "abhishek.karn025:21:fbdd9c",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "color": "#EF553B",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "KA",
                        "offsetgroup": "KA",
                        "orientation": "v",
                        "textposition": "auto",
                        "texttemplate": "%{y}",
                        "hovertemplate": "State=KA<br>Year=%{x}<br>Sales=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "MH",
                        "type": "bar",
                        "xsrc": "abhishek.karn025:21:e77af8",
                        "ysrc": "abhishek.karn025:21:3b9ab7",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "color": "#00cc96",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "MH",
                        "offsetgroup": "MH",
                        "orientation": "v",
                        "textposition": "auto",
                        "texttemplate": "%{y}",
                        "hovertemplate": "State=MH<br>Year=%{x}<br>Sales=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "UP",
                        "type": "bar",
                        "xsrc": "abhishek.karn025:21:511ee4",
                        "ysrc": "abhishek.karn025:21:eba641",
                        "xaxis": "x3",
                        "yaxis": "y3",
                        "marker": {
                            "color": "#ab63fa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": true,
                        "legendgroup": "UP",
                        "offsetgroup": "UP",
                        "orientation": "v",
                        "textposition": "auto",
                        "texttemplate": "%{y}",
                        "hovertemplate": "State=UP<br>Year=%{x}<br>Sales=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "",
                        "type": "bar",
                        "xsrc": "abhishek.karn025:21:01e164",
                        "ysrc": "abhishek.karn025:21:45b8c8",
                        "xaxis": "x4",
                        "yaxis": "y4",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": false,
                        "legendgroup": "",
                        "offsetgroup": "",
                        "orientation": "v",
                        "textposition": "auto",
                        "texttemplate": "%{y}",
                        "hovertemplate": "State=%{x}<br>Sales=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "name": "",
                        "type": "bar",
                        "xsrc": "abhishek.karn025:21:7a0fd9",
                        "ysrc": "abhishek.karn025:21:c0bbce",
                        "xaxis": "x5",
                        "yaxis": "y5",
                        "marker": {
                            "color": "#636efa",
                            "pattern": {
                                "shape": ""
                            }
                        },
                        "showlegend": false,
                        "legendgroup": "",
                        "offsetgroup": "",
                        "orientation": "v",
                        "textposition": "auto",
                        "texttemplate": "%{y}",
                        "hovertemplate": "State=%{x}<br>Sales=%{y}<extra></extra>",
                        "alignmentgroup": "True"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#636efa"
                        },
                        "mode": "lines+markers",
                        "name": "AP",
                        "type": "scatter",
                        "xsrc": "abhishek.karn025:21:4f097e",
                        "ysrc": "abhishek.karn025:21:2e7128",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "AP",
                        "orientation": "v",
                        "hovertemplate": "State=AP<br>Year=%{x}<br>Sales=%{y}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#EF553B"
                        },
                        "mode": "lines+markers",
                        "name": "KA",
                        "type": "scatter",
                        "xsrc": "abhishek.karn025:21:94584b",
                        "ysrc": "abhishek.karn025:21:293b85",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "KA",
                        "orientation": "v",
                        "hovertemplate": "State=KA<br>Year=%{x}<br>Sales=%{y}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#00cc96"
                        },
                        "mode": "lines+markers",
                        "name": "MH",
                        "type": "scatter",
                        "xsrc": "abhishek.karn025:21:1136ab",
                        "ysrc": "abhishek.karn025:21:0d796b",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "MH",
                        "orientation": "v",
                        "hovertemplate": "State=MH<br>Year=%{x}<br>Sales=%{y}<extra></extra>"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "#ab63fa"
                        },
                        "mode": "lines+markers",
                        "name": "UP",
                        "type": "scatter",
                        "xsrc": "abhishek.karn025:21:8e76f0",
                        "ysrc": "abhishek.karn025:21:ec81c0",
                        "xaxis": "x6",
                        "yaxis": "y6",
                        "marker": {
                            "symbol": "circle"
                        },
                        "showlegend": true,
                        "legendgroup": "UP",
                        "orientation": "v",
                        "hovertemplate": "State=UP<br>Year=%{x}<br>Sales=%{y}<extra></extra>"
                    },
                    {
                        "name": "",
                        "type": "treemap",
                        "domain": {
                            "x": [
                                0.0,
                                0.2771830985915493
                            ],
                            "y": [
                                0.0,
                                0.20571428571428574
                            ]
                        },
                        "idssrc": "abhishek.karn025:21:ed4ae1",
                        "labelssrc": "abhishek.karn025:21:ba54d4",
                        "valuessrc": "abhishek.karn025:21:d17b64",
                        "parentssrc": "abhishek.karn025:21:c1e81f",
                        "branchvalues": "total",
                        "hovertemplate": "labels=%{label}<br>Sales=%{value}<br>parent=%{parent}<br>id=%{id}<extra></extra>"
                    },
                    {
                        "type": "table",
                        "cells": {
                            "align": "left",
                            "valuessrc": "abhishek.karn025:21:6b1375"
                        },
                        "domain": {
                            "x": [
                                0.3671830985915493,
                                0.6790140845070423
                            ],
                            "y": [
                                0.0,
                                0.20571428571428574
                            ]
                        },
                        "header": {
                            "align": "left",
                            "valuessrc": "abhishek.karn025:21:2fdbce"
                        }
                    }
                ],
                "layout": {
                    "title": {
                        "x": 0.02,
                        "text": "Dummy Report (v5)"
                    },
                    "width": 1660,
                    "xaxis": {
                        "anchor": "y",
                        "domain": [
                            0.0,
                            0.2771830985915493
                        ]
                    },
                    "yaxis": {
                        "anchor": "x",
                        "domain": [
                            0.7257142857142858,
                            1.0
                        ]
                    },
                    "height": 2352,
                    "legend": {
                        "x": 0.5,
                        "y": -0.1,
                        "xanchor": "center",
                        "yanchor": "top",
                        "orientation": "h"
                    },
                    "margin": {
                        "b": 110,
                        "l": 70,
                        "r": 130,
                        "t": 96
                    },
                    "xaxis2": {
                        "anchor": "y2",
                        "domain": [
                            0.3671830985915493,
                            0.6790140845070423
                        ]
                    },
                    "xaxis3": {
                        "anchor": "y3",
                        "domain": [
                            0.7690140845070423,
                            1.0
                        ]
                    },
                    "xaxis4": {
                        "anchor": "y4",
                        "domain": [
                            0.0,
                            0.2771830985915493
                        ]
                    },
                    "xaxis5": {
                        "anchor": "y5",
                        "domain": [
                            0.3671830985915493,
                            0.6790140845070423
                        ]
                    },
                    "xaxis6": {
                        "anchor": "y6",
                        "domain": [
                            0.7690140845070423,
                            1.0
                        ]
                    },
                    "xaxis7": {
                        "anchor": "y7",
                        "domain": [
                            0.7690140845070423,
                            1.0
                        ]
                    },
                    "yaxis2": {
                        "anchor": "x2",
                        "domain": [
                            0.7257142857142858,
                            1.0
                        ]
                    },
                    "yaxis3": {
                        "anchor": "x3",
                        "domain": [
                            0.7257142857142858,
                            1.0
                        ]
                    },
                    "yaxis4": {
                        "anchor": "x4",
                        "domain": [
                            0.34571428571428575,
                            0.5857142857142857
                        ]
                    },
                    "yaxis5": {
                        "anchor": "x5",
                        "domain": [
                            0.34571428571428575,
                            0.5857142857142857
                        ]
                    },
                    "yaxis6": {
                        "anchor": "x6",
                        "domain": [
                            0.34571428571428575,
                            0.5857142857142857
                        ]
                    },
                    "yaxis7": {
                        "anchor": "x7",
                        "domain": [
                            0.0,
                            0.20571428571428574
                        ]
                    },
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "line": {
                                            "color": "white",
                                            "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": "#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
                                    },
                                    "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": "white",
                                            "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": "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": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "title": {
                                    "standoff": 15
                                },
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "mapbox": {
                                "style": "light"
                            },
                            "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",
                                "#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": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "color": "#2a3f5f"
                                }
                            },
                            "autotypenumbers": "strict",
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#2a3f5f",
                                "arrowwidth": 1
                            }
                        }
                    },
                    "showlegend": true,
                    "annotations": [
                        {
                            "x": 0.13859154929577466,
                            "y": 1.0,
                            "font": {
                                "size": 13
                            },
                            "text": "Total over time",
                            "xref": "paper",
                            "yref": "paper",
                            "yshift": 16,
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5230985915492958,
                            "y": 1.0,
                            "font": {
                                "size": 13
                            },
                            "text": "Heatmap",
                            "xref": "paper",
                            "yref": "paper",
                            "yshift": 16,
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.8845070422535212,
                            "y": 1.0,
                            "font": {
                                "size": 13
                            },
                            "text": "Stacked sales by year (states)",
                            "xref": "paper",
                            "yref": "paper",
                            "yshift": 16,
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.13859154929577466,
                            "y": 0.5857142857142857,
                            "font": {
                                "size": 13
                            },
                            "text": "Total by state (bar)",
                            "xref": "paper",
                            "yref": "paper",
                            "yshift": 16,
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5230985915492958,
                            "y": 0.5857142857142857,
                            "font": {
                                "size": 13
                            },
                            "text": "Top 3 states by total sales",
                            "xref": "paper",
                            "yref": "paper",
                            "yshift": 16,
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.8845070422535212,
                            "y": 0.5857142857142857,
                            "font": {
                                "size": 13
                            },
                            "text": "Sales over time by state (lines)",
                            "xref": "paper",
                            "yref": "paper",
                            "yshift": 16,
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.13859154929577466,
                            "y": 0.20571428571428574,
                            "font": {
                                "size": 13
                            },
                            "text": "Treemap by state",
                            "xref": "paper",
                            "yref": "paper",
                            "yshift": 16,
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        },
                        {
                            "x": 0.5230985915492958,
                            "y": 0.20571428571428574,
                            "font": {
                                "size": 13
                            },
                            "text": "Data table preview",
                            "xref": "paper",
                            "yref": "paper",
                            "yshift": 16,
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false
                        }
                    ]
                }
            },
            "height": 2352,
            "width": 1660,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~abhishek.karn025",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/8.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-4.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-19 08:26:37",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "abhishek.karn025",
                "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-20T13:21:33.780647Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~cleaaum/15.embed",
            "fid": "cleaaum:15",
            "filename": "Plot 15",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/cleaaum/15/9_Q2RLZH1A84LRBWGIM0BOR5WWN5E77Y.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/cleaaum/15/2_KKCXKHSQHF7ACR29UKG263PC3NN5G0.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/cleaaum/15/8_Q0GJTG521NC2OU2GAJ46NF20VG7YB9.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/cleaaum/15/9_Q2RLZH1A84LRBWGIM0BOR5WWN5E77Y.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/cleaaum:15",
                "plots": "https://api.plotly.com/v2/plots/cleaaum:15",
                "parent": "https://api.plotly.com/v2/folders/home?user=cleaaum"
            },
            "owner": "cleaaum",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~cleaaum/15/",
            "world_readable": true,
            "date_modified": "2025-08-20T13:21:33.791Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~cleaaum/15/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Africa, x",
                                "y": "Africa, y",
                                "text": "Africa, text"
                            }
                        },
                        "mode": "markers",
                        "name": "Africa",
                        "type": "scatter",
                        "xsrc": "cleaaum:14:99a8d7",
                        "ysrc": "cleaaum:14:1c7ef2",
                        "marker": {
                            "line": {
                                "width": 2
                            },
                            "meta": {
                                "columnNames": {
                                    "size": "Africa, size"
                                }
                            },
                            "symbol": "circle",
                            "sizeref": 0.85,
                            "sizesrc": "cleaaum:14:de801d",
                            "sizemode": "diameter"
                        },
                        "textsrc": "cleaaum:14:b975c0",
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Americas, y",
                                "y": "Americas, x"
                            }
                        },
                        "mode": "markers",
                        "type": "scatter",
                        "xsrc": "cleaaum:14:06ea4a",
                        "ysrc": "cleaaum:14:978d09",
                        "xaxis": "x",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Life Expectancy v. Per Capita GDP, 2007"
                    },
                    "xaxis": {
                        "type": "log",
                        "range": [
                            2.003297660701705,
                            5.191505530708712
                        ],
                        "title": {
                            "text": "GDP per capita (2000 dollars)"
                        },
                        "ticklen": 5,
                        "gridcolor": "rgb(255, 255, 255)",
                        "gridwidth": 2,
                        "zerolinewidth": 1
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            36.12621671352166,
                            91.72921793264332
                        ],
                        "title": {
                            "text": "Life Expectancy (years)"
                        },
                        "ticklen": 5,
                        "gridcolor": "rgb(255, 255, 255)",
                        "gridwidth": 2,
                        "zerolinewidth": 1
                    },
                    "plot_bgcolor": "rgb(243, 243, 243)",
                    "paper_bgcolor": "rgb(243, 243, 243)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~cleaaum",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/86.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-15 15:16:11",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "cleaaum",
                "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-20T12:26:49.362365Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~JuliaWKosmos/3.embed",
            "fid": "JuliaWKosmos:3",
            "filename": "WZORNIK",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/JuliaWKosmos/3/9_ZN2C6OMH08EPGV3VQPXLA4MU2BOYCC.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/JuliaWKosmos/3/2_T94ZMAN80XCTGVECWR4UJ79XAI1BSP.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/JuliaWKosmos/3/8_L1QFBMJZLCCXWMRKKRHL8SYC25CA4N.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/JuliaWKosmos/3/9_ZN2C6OMH08EPGV3VQPXLA4MU2BOYCC.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/JuliaWKosmos:3",
                "plots": "https://api.plotly.com/v2/plots/JuliaWKosmos:3",
                "parent": "https://api.plotly.com/v2/folders/home?user=JuliaWKosmos"
            },
            "owner": "JuliaWKosmos",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~JuliaWKosmos/3/",
            "world_readable": true,
            "date_modified": "2025-08-20T14:59:37.157Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~JuliaWKosmos/3/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": true,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "r": "G",
                                "text": "A",
                                "theta": "H",
                                "marker": {
                                    "color": "D"
                                },
                                "textposition": ""
                            }
                        },
                        "mode": "markers",
                        "rsrc": "JuliaWKosmos:2:c6ba07",
                        "type": "scatterpolar",
                        "marker": {
                            "cmax": 100,
                            "cmin": 0,
                            "meta": {
                                "columnNames": {
                                    "color": "D"
                                }
                            },
                            "size": 7,
                            "cauto": false,
                            "colorbar": {
                                "title": {
                                    "text": "L*"
                                }
                            },
                            "colorsrc": "JuliaWKosmos:2:133d97",
                            "showscale": true,
                            "colorscale": [
                                [
                                    0,
                                    "#ffffff"
                                ],
                                [
                                    0.125,
                                    "#f0f0f0"
                                ],
                                [
                                    0.25,
                                    "#d9d9d9"
                                ],
                                [
                                    0.375,
                                    "#bdbdbd"
                                ],
                                [
                                    0.5,
                                    "#969696"
                                ],
                                [
                                    0.625,
                                    "#737373"
                                ],
                                [
                                    0.75,
                                    "#525252"
                                ],
                                [
                                    0.875,
                                    "#252525"
                                ],
                                [
                                    1,
                                    "#000000"
                                ]
                            ],
                            "reversescale": true
                        },
                        "hoveron": "points",
                        "textsrc": "JuliaWKosmos:2:10fb38",
                        "textfont": {
                            "size": 3
                        },
                        "thetasrc": "JuliaWKosmos:2:87689b",
                        "hoverinfo": "text",
                        "hoverlabel": {
                            "align": "auto"
                        },
                        "textposition": "middle left",
                        "texttemplate": "",
                        "hovertemplate": "",
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 7
                    },
                    "polar": {
                        "radialaxis": {
                            "type": "linear",
                            "range": [
                                0,
                                15.143152454780362
                            ],
                            "title": {
                                "text": "C*ab"
                            },
                            "autorange": true
                        },
                        "angularaxis": {
                            "type": "linear",
                            "rotation": 5.331316374874003
                        }
                    },
                    "title": {
                        "text": "Indygo SPEX"
                    },
                    "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"
                    },
                    "clickmode": "none"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~JuliaWKosmos",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-19 12:48:06",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "JuliaWKosmos",
                "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-20T11:59:25.717735Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~christianthomasdodge/1.embed",
            "fid": "christianthomasdodge:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/christianthomasdodge/1/9_566O48MGO9SYYXBOZLX5DQ26ZCHPC6.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/christianthomasdodge/1/2_9LPQKY8BOIKW05UH2JZUJF91S6WZQW.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/christianthomasdodge/1/8_M9HY7L846J0OI8MAKSUI8QC5BVHJGH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/christianthomasdodge/1/9_566O48MGO9SYYXBOZLX5DQ26ZCHPC6.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/christianthomasdodge:1",
                "plots": "https://api.plotly.com/v2/plots/christianthomasdodge:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=christianthomasdodge"
            },
            "owner": "christianthomasdodge",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~christianthomasdodge/1/",
            "world_readable": true,
            "date_modified": "2025-08-20T13:12:06.878Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~christianthomasdodge/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "asrc": "christianthomasdodge:0:a04687",
                        "bsrc": "christianthomasdodge:0:067656",
                        "csrc": "christianthomasdodge:0:68a475",
                        "meta": {
                            "columnNames": {
                                "a": " Site_Characterisation ",
                                "b": " Hazard_Identification ",
                                "c": " Engineering_Design"
                            }
                        },
                        "mode": "markers",
                        "name": "UK Eng Geol",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "rgb(0, 98, 247)",
                            "symbol": "square"
                        },
                        "legendgroup": 1
                    },
                    {
                        "asrc": "christianthomasdodge:0:1a5bc4",
                        "bsrc": "christianthomasdodge:0:5e54af",
                        "csrc": "christianthomasdodge:0:6a182c",
                        "line": {
                            "color": "rgb(252, 167, 0)",
                            "width": 0
                        },
                        "meta": {
                            "columnNames": {
                                "a": " Site_Characterisation 3",
                                "b": " Hazard_Identification 4",
                                "c": " Engineering_Design5"
                            }
                        },
                        "mode": "markers",
                        "name": "UK Geotech Eng",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "rgb(0, 98, 247)"
                        }
                    },
                    {
                        "asrc": "christianthomasdodge:0:e49a9f",
                        "bsrc": "christianthomasdodge:0:e4db30",
                        "csrc": "christianthomasdodge:0:76115d",
                        "meta": {
                            "columnNames": {
                                "a": " Site_Characterisation 7",
                                "b": " Hazard_Identification 8",
                                "c": " Engineering_Design9"
                            }
                        },
                        "mode": "markers",
                        "name": "Ireland Eng Geol",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "rgb(0, 242, 0)",
                            "symbol": "square"
                        }
                    },
                    {
                        "asrc": "christianthomasdodge:0:eec4ce",
                        "bsrc": "christianthomasdodge:0:1d5211",
                        "csrc": "christianthomasdodge:0:ab61d2",
                        "meta": {
                            "columnNames": {
                                "a": " Site_Characterisation 11",
                                "b": " Hazard_Identification 12",
                                "c": " Engineering_Design13"
                            }
                        },
                        "mode": "markers",
                        "name": "Ireland Geotech Eng",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "rgb(0, 242, 0)"
                        }
                    },
                    {
                        "asrc": "christianthomasdodge:0:b06e8c",
                        "bsrc": "christianthomasdodge:0:e74677",
                        "csrc": "christianthomasdodge:0:1bd93e",
                        "meta": {
                            "columnNames": {
                                "a": " Site_Characterisation 15",
                                "b": " Hazard_Identification 16",
                                "c": " Engineering_Design17"
                            }
                        },
                        "mode": "markers",
                        "name": "Aust Eng Geol",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "rgb(255, 216, 0)",
                            "symbol": "square"
                        }
                    },
                    {
                        "asrc": "christianthomasdodge:0:15b8a9",
                        "bsrc": "christianthomasdodge:0:234ea4",
                        "csrc": "christianthomasdodge:0:a24f0a",
                        "meta": {
                            "columnNames": {
                                "a": " Site_Characterisation 19",
                                "b": " Hazard_Identification 20",
                                "c": " Engineering_Design21"
                            }
                        },
                        "mode": "markers",
                        "name": "Aust Geotech Eng",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "rgb(255, 216, 0)"
                        }
                    },
                    {
                        "asrc": "christianthomasdodge:0:1d85ee",
                        "bsrc": "christianthomasdodge:0:d41992",
                        "csrc": "christianthomasdodge:0:6e15b7",
                        "meta": {
                            "columnNames": {
                                "a": " Site_Characterisation 23",
                                "b": " Hazard_Identification 24",
                                "c": " Engineering_Design25"
                            }
                        },
                        "mode": "markers",
                        "name": "HK Eng Geol",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "rgb(198, 124, 250)",
                            "symbol": "square"
                        }
                    },
                    {
                        "asrc": "christianthomasdodge:0:ee38c4",
                        "bsrc": "christianthomasdodge:0:90b592",
                        "csrc": "christianthomasdodge:0:1521a8",
                        "meta": {
                            "columnNames": {
                                "a": " Site_Characterisation 27",
                                "b": " Hazard_Identification 28",
                                "c": " Engineering_Design29"
                            }
                        },
                        "mode": "markers",
                        "name": "HK Geotech Eng",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "rgb(198, 124, 250)"
                        }
                    },
                    {
                        "asrc": "christianthomasdodge:0:1519bf",
                        "bsrc": "christianthomasdodge:0:d00c5d",
                        "csrc": "christianthomasdodge:0:8bd208",
                        "meta": {
                            "columnNames": {
                                "a": " Site_Characterisation 31",
                                "b": " Hazard_Identification 32",
                                "c": " Engineering_Design33"
                            }
                        },
                        "mode": "markers",
                        "name": "NZ Eng Geol",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "rgb(0, 0, 0)",
                            "symbol": "square"
                        }
                    },
                    {
                        "asrc": "christianthomasdodge:0:2f04f5",
                        "bsrc": "christianthomasdodge:0:c634f9",
                        "csrc": "christianthomasdodge:0:9e9e56",
                        "meta": {
                            "columnNames": {
                                "a": " Site_Characterisation 35",
                                "b": " Hazard_Identification 36",
                                "c": " Engineering_Design37"
                            }
                        },
                        "mode": "markers",
                        "name": "NZ Geotech Eng",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "rgb(0, 0, 0)"
                        }
                    },
                    {
                        "asrc": "christianthomasdodge:0:526e41",
                        "bsrc": "christianthomasdodge:0:3ceabf",
                        "csrc": "christianthomasdodge:0:bfceb7",
                        "meta": {
                            "columnNames": {
                                "a": " Site_Characterisation 39",
                                "b": " Hazard_Identification 40",
                                "c": " Engineering_Design41"
                            }
                        },
                        "mode": "markers",
                        "name": "US Eng Geol",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "rgb(4, 237, 239)",
                            "symbol": "square"
                        }
                    },
                    {
                        "asrc": "christianthomasdodge:0:e509d1",
                        "bsrc": "christianthomasdodge:0:311238",
                        "csrc": "christianthomasdodge:0:9be67a",
                        "meta": {
                            "columnNames": {
                                "a": " Site_Characterisation 43",
                                "b": " Hazard_Identification 44",
                                "c": " Engineering_Design45"
                            }
                        },
                        "mode": "markers",
                        "name": "US Geol Eng",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "rgb(4, 237, 239)",
                            "symbol": "diamond"
                        }
                    },
                    {
                        "asrc": "christianthomasdodge:0:ebbc5f",
                        "bsrc": "christianthomasdodge:0:5896bc",
                        "csrc": "christianthomasdodge:0:db0b70",
                        "meta": {
                            "columnNames": {
                                "a": " Site_Characterisation 47",
                                "b": " Hazard_Identification 48",
                                "c": " Engineering_Design49"
                            }
                        },
                        "mode": "markers",
                        "name": "US Geotech Eng",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "rgb(4, 237, 239)"
                        }
                    },
                    {
                        "asrc": "christianthomasdodge:0:c54055",
                        "bsrc": "christianthomasdodge:0:42efd6",
                        "csrc": "christianthomasdodge:0:16b297",
                        "meta": {
                            "columnNames": {
                                "a": " Site_Characterisation 51",
                                "b": " Hazard_Identification 52",
                                "c": " Engineering_Design53"
                            }
                        },
                        "mode": "markers",
                        "name": "Canada Eng Geol",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "rgb(255, 0, 2)",
                            "symbol": "square"
                        }
                    },
                    {
                        "asrc": "christianthomasdodge:0:c23917",
                        "bsrc": "christianthomasdodge:0:f002be",
                        "csrc": "christianthomasdodge:0:6dfcb9",
                        "meta": {
                            "columnNames": {
                                "a": " Site_Characterisation 55",
                                "b": " Hazard_Identification 56",
                                "c": " Engineering_Design57"
                            }
                        },
                        "mode": "markers",
                        "name": "Canada Geol Eng",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "rgb(255, 0, 2)",
                            "symbol": "diamond"
                        }
                    },
                    {
                        "asrc": "christianthomasdodge:0:571065",
                        "bsrc": "christianthomasdodge:0:feeba5",
                        "csrc": "christianthomasdodge:0:38fef2",
                        "meta": {
                            "columnNames": {
                                "a": " Site_Characterisation 59",
                                "b": " Hazard_Identification 60",
                                "c": " Engineering_Design61"
                            }
                        },
                        "mode": "markers",
                        "name": "Canada Geotech Eng",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "rgb(255, 0, 2)"
                        }
                    },
                    {
                        "asrc": "christianthomasdodge:0:27f042",
                        "bsrc": "christianthomasdodge:0:8811e6",
                        "csrc": "christianthomasdodge:0:db1237",
                        "meta": {
                            "columnNames": {
                                "a": " Site_Characterisation 63",
                                "b": " Hazard_Identification 64",
                                "c": " Engineering_Design65"
                            }
                        },
                        "mode": "markers",
                        "name": "SA Eng Geol",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "rgb(0, 191, 6)",
                            "symbol": "square"
                        }
                    },
                    {
                        "asrc": "christianthomasdodge:0:9f6e0c",
                        "bsrc": "christianthomasdodge:0:5f7303",
                        "csrc": "christianthomasdodge:0:aa927d",
                        "meta": {
                            "columnNames": {
                                "a": " Site_Characterisation 67",
                                "b": " Hazard_Identification 68",
                                "c": " Engineering_Design69"
                            }
                        },
                        "mode": "markers",
                        "name": "SA Geotech Eng",
                        "type": "scatterternary",
                        "marker": {
                            "size": 10,
                            "color": "rgb(0, 191, 6)"
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 12,
                        "color": "#444",
                        "family": "\"Open Sans\", verdana, arial, sans-serif"
                    },
                    "smith": false,
                    "title": {
                        "font": {
                            "size": 17,
                            "color": "#444",
                            "family": "\"Open Sans\", verdana, arial, sans-serif"
                        },
                        "text": ""
                    },
                    "width": 1103,
                    "xaxis": {
                        "side": "bottom",
                        "type": "linear",
                        "color": "#444",
                        "dtick": 0.2,
                        "range": [
                            0,
                            1
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14,
                                "color": "#444",
                                "family": "\"Open Sans\", verdana, arial, sans-serif"
                            },
                            "text": ""
                        },
                        "anchor": "y",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": 0,
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "auto",
                        "zeroline": false,
                        "autorange": true,
                        "rangemode": "normal",
                        "fixedrange": false,
                        "tickprefix": "",
                        "ticksuffix": "",
                        "hoverformat": "",
                        "showexponent": "all",
                        "exponentformat": "e",
                        "showticklabels": false
                    },
                    "yaxis": {
                        "side": "left",
                        "type": "linear",
                        "color": "#444",
                        "dtick": 0.2,
                        "range": [
                            0,
                            1
                        ],
                        "tick0": 0,
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 14,
                                "color": "#444",
                                "family": "\"Open Sans\", verdana, arial, sans-serif"
                            },
                            "text": ""
                        },
                        "anchor": "x",
                        "domain": [
                            0,
                            1
                        ],
                        "nticks": 0,
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "auto",
                        "zeroline": false,
                        "autorange": true,
                        "rangemode": "normal",
                        "fixedrange": false,
                        "tickprefix": "",
                        "ticksuffix": "",
                        "hoverformat": "",
                        "showexponent": "all",
                        "exponentformat": "e",
                        "showticklabels": false
                    },
                    "height": 633.062,
                    "legend": {
                        "x": 1,
                        "y": 1,
                        "font": {
                            "size": 20,
                            "color": "#444",
                            "family": "Times New Roman"
                        },
                        "width": 84,
                        "height": 67,
                        "valign": "top",
                        "bgcolor": "#fff",
                        "xanchor": "left",
                        "yanchor": "top",
                        "itemsizing": "constant",
                        "traceorder": "normal",
                        "bordercolor": "#444",
                        "borderwidth": 0,
                        "orientation": "v",
                        "tracegroupgap": 0
                    },
                    "margin": {
                        "b": 80,
                        "l": 80,
                        "r": 80,
                        "t": 20,
                        "pad": 0,
                        "autoexpand": true
                    },
                    "shapes": [],
                    "ternary": {
                        "aaxis": {
                            "ticks": "",
                            "title": {
                                "font": {
                                    "size": 20,
                                    "family": "Times New Roman"
                                },
                                "text": "Site and Earth Materials Characterisation"
                            },
                            "showgrid": false,
                            "showline": true,
                            "showticklabels": false
                        },
                        "baxis": {
                            "ticks": "",
                            "title": {
                                "font": {
                                    "size": 20,
                                    "family": "Times New Roman"
                                },
                                "text": "Hazard Identification and Risk Mitigation"
                            },
                            "showgrid": false,
                            "showline": true,
                            "showticklabels": false
                        },
                        "caxis": {
                            "ticks": "",
                            "title": {
                                "font": {
                                    "size": 20,
                                    "family": "Times New Roman"
                                },
                                "text": "Engineering Design"
                            },
                            "showgrid": false,
                            "showline": true,
                            "showticklabels": false
                        }
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "hovermode": "closest",
                    "separators": ".,",
                    "showlegend": true,
                    "annotations": [],
                    "hidesources": false,
                    "plot_bgcolor": "#fff",
                    "paper_bgcolor": "#fff"
                }
            },
            "height": 633,
            "width": 1103,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~christianthomasdodge",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/7.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-20 11:55:40",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "christianthomasdodge",
                "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-20T11:45:13.772298Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~JuliaWKosmos/1.embed",
            "fid": "JuliaWKosmos:1",
            "filename": "Spectrophotometry",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/JuliaWKosmos/1/9_CIGUX5XVXKPUUMLPMJNCFDSE2TIPSI.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/JuliaWKosmos/1/2_1Q0VRJLSMHIOKLTURIM8JYOUFW3HW2.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/JuliaWKosmos/1/8_PYT2CR6XSCC8QCG5O221UK36K0AJ8I.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/JuliaWKosmos/1/9_CIGUX5XVXKPUUMLPMJNCFDSE2TIPSI.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/JuliaWKosmos:1",
                "plots": "https://api.plotly.com/v2/plots/JuliaWKosmos:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=JuliaWKosmos"
            },
            "owner": "JuliaWKosmos",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~JuliaWKosmos/1/",
            "world_readable": true,
            "date_modified": "2025-08-20T11:45:13.784Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~JuliaWKosmos/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": true,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "r": "G",
                                "text": "A",
                                "theta": "H",
                                "marker": {
                                    "color": "D"
                                }
                            }
                        },
                        "mode": "markers+text",
                        "rsrc": "JuliaWKosmos:0:3ddd74",
                        "type": "scatterpolar",
                        "marker": {
                            "cmax": 100,
                            "cmin": 0,
                            "meta": {
                                "columnNames": {
                                    "color": "D"
                                }
                            },
                            "cauto": false,
                            "colorbar": {
                                "title": {
                                    "text": "L*"
                                }
                            },
                            "colorsrc": "JuliaWKosmos:0:47d23c",
                            "showscale": true,
                            "colorscale": [
                                [
                                    0,
                                    "#ffffff"
                                ],
                                [
                                    0.125,
                                    "#f0f0f0"
                                ],
                                [
                                    0.25,
                                    "#d9d9d9"
                                ],
                                [
                                    0.375,
                                    "#bdbdbd"
                                ],
                                [
                                    0.5,
                                    "#969696"
                                ],
                                [
                                    0.625,
                                    "#737373"
                                ],
                                [
                                    0.75,
                                    "#525252"
                                ],
                                [
                                    0.875,
                                    "#252525"
                                ],
                                [
                                    1,
                                    "#000000"
                                ]
                            ],
                            "reversescale": true
                        },
                        "textsrc": "JuliaWKosmos:0:0eb46b",
                        "textfont": {
                            "size": 7
                        },
                        "thetasrc": "JuliaWKosmos:0:1b6ed4",
                        "hoverinfo": "text",
                        "hoverlabel": {
                            "align": "auto"
                        },
                        "textposition": "bottom left",
                        "hovertemplate": "",
                        "autocolorscale": false
                    }
                ],
                "frames": [],
                "layout": {
                    "polar": {
                        "radialaxis": {
                            "type": "linear",
                            "range": [
                                0,
                                15.078216123499141
                            ],
                            "autorange": true
                        },
                        "angularaxis": {
                            "type": "linear"
                        }
                    },
                    "title": {
                        "text": "Indygo SPEX"
                    },
                    "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"
                    },
                    "clickmode": "none"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~JuliaWKosmos",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/69.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-11.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-19 12:48:06",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "JuliaWKosmos",
                "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-20T11:37:13.042337Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Dzhalil/29.embed",
            "fid": "Dzhalil:29",
            "filename": "Plot 29",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Dzhalil/29/9_N0DX1LDP2U90FOT7H1FJV20D33B83J.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Dzhalil/29/2_VR25HD7PB63Q2ZW7KBLNLA2Q6VY3LY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Dzhalil/29/8_GVDI6VBFOLJJR6ORCCKXKOM59E6SRX.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Dzhalil/29/9_N0DX1LDP2U90FOT7H1FJV20D33B83J.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Dzhalil:29",
                "plots": "https://api.plotly.com/v2/plots/Dzhalil:29",
                "parent": "https://api.plotly.com/v2/folders/home?user=Dzhalil"
            },
            "owner": "Dzhalil",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Dzhalil/29/",
            "world_readable": true,
            "date_modified": "2025-08-20T11:37:13.056Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Dzhalil/29/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "T, °С, x",
                                "y": "T, °С, y",
                                "z": "T, °С, z",
                                "text": "text",
                                "marker": {
                                    "color": "Data"
                                }
                            }
                        },
                        "mode": "markers+text",
                        "name": "T, °С",
                        "type": "scatter3d",
                        "xsrc": "Dzhalil:28:961044",
                        "ysrc": "Dzhalil:28:c6ef4a",
                        "zsrc": "Dzhalil:28:922408",
                        "marker": {
                            "meta": {
                                "columnNames": {
                                    "color": "color"
                                }
                            },
                            "size": 8,
                            "symbol": "circle",
                            "colorbar": {
                                "len": 1,
                                "ypad": 10,
                                "dtick": 10,
                                "tick0": 40,
                                "ticks": "inside",
                                "title": {
                                    "font": {
                                        "size": 14
                                    },
                                    "side": "bottom",
                                    "text": "T, <i>°С</i>"
                                },
                                "nticks": 26,
                                "lenmode": "fraction",
                                "tickfont": {
                                    "size": 14
                                },
                                "tickmode": "auto",
                                "thicknessmode": "pixels",
                                "showticklabels": true
                            },
                            "colorsrc": "Dzhalil:28:017b6a",
                            "showscale": true,
                            "colorscale": [
                                [
                                    0,
                                    "#a50026"
                                ],
                                [
                                    0.1,
                                    "#d73027"
                                ],
                                [
                                    0.2,
                                    "#f46d43"
                                ],
                                [
                                    0.3,
                                    "#fdae61"
                                ],
                                [
                                    0.4,
                                    "#fee090"
                                ],
                                [
                                    0.5,
                                    "#ffffbf"
                                ],
                                [
                                    0.6,
                                    "#e0f3f8"
                                ],
                                [
                                    0.7,
                                    "#abd9e9"
                                ],
                                [
                                    0.8,
                                    "#74add1"
                                ],
                                [
                                    0.9,
                                    "#4575b4"
                                ],
                                [
                                    1,
                                    "#313695"
                                ]
                            ],
                            "reversescale": true
                        },
                        "textsrc": "Dzhalil:28:0e98ee",
                        "textfont": {
                            "size": 18,
                            "family": "Times New Roman"
                        },
                        "hoverinfo": "x+y+z+text+name",
                        "hoverlabel": {
                            "namelength": 15
                        },
                        "showlegend": false,
                        "textposition": "middle right",
                        "autocolorscale": true
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "<br>, x",
                                "y": "<br>, y",
                                "z": "<br>, z",
                                "text": ""
                            }
                        },
                        "mode": "markers",
                        "name": "<br>",
                        "type": "scatter3d",
                        "xsrc": "Dzhalil:28:e9f7b0",
                        "ysrc": "Dzhalil:28:c547f2",
                        "zsrc": "Dzhalil:28:170d75",
                        "marker": {
                            "size": 1,
                            "color": "rgb(255, 255, 255)",
                            "opacity": 0.01
                        }
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "family": "Times New Roman"
                    },
                    "scene": {
                        "xaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "family": "Times New Roman"
                                },
                                "text": "Длинна, мм"
                            },
                            "showgrid": true,
                            "showline": false,
                            "tickfont": {
                                "size": 12
                            },
                            "autorange": true
                        },
                        "yaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "family": "Times New Roman"
                                },
                                "text": "Высота, мм"
                            },
                            "tickfont": {
                                "size": 12
                            }
                        },
                        "zaxis": {
                            "type": "linear",
                            "title": {
                                "font": {
                                    "family": "Times New Roman"
                                },
                                "text": "Ширина, мм"
                            },
                            "tickfont": {
                                "size": 12
                            },
                            "autorange": true
                        },
                        "camera": {
                            "up": {
                                "x": -0.05374484562937904,
                                "y": 0.9632166418099944,
                                "z": -0.2632967764872012
                            },
                            "eye": {
                                "x": 1.1322322239103226,
                                "y": 0.5542531805594857,
                                "z": 2.6058727853363304
                            },
                            "center": {
                                "x": 0.1259981547730272,
                                "y": -0.12445077738607858,
                                "z": 0.3283703394534757
                            },
                            "projection": {
                                "type": "orthographic"
                            }
                        },
                        "domain": {
                            "x": [
                                0,
                                1
                            ],
                            "y": [
                                0,
                                1
                            ]
                        },
                        "dragmode": "orbit",
                        "aspectmode": "manual",
                        "aspectratio": {
                            "x": 1.6105100000000052,
                            "y": 1.6105100000000052,
                            "z": 1.6105100000000052
                        }
                    },
                    "title": {
                        "font": {
                            "size": 20
                        },
                        "text": "3D-визуализация распределения температуры в \"Зоне основного хранения (+15...+25 °С)\"  №1.15.6 в холодный период года"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            2499,
                            2501
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -450,
                            750
                        ],
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.9091769157994324,
                        "y": -0.028943248532289557,
                        "title": {
                            "text": "<br>"
                        },
                        "xanchor": "left",
                        "yanchor": "auto"
                    },
                    "autosize": true,
                    "dragmode": "zoom",
                    "showlegend": true
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Dzhalil",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/61.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-05-22 08:01:37",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Dzhalil",
                "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-20T11:33:24.900849Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~yaxiu/1.embed",
            "fid": "yaxiu:1",
            "filename": "Plot 1",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/yaxiu/1/9_ZM63PF517FZPNFPC6BWOEPF8YQ61KD.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/yaxiu/1/2_3E7KU675W5T2EUC98UOS1A4Q9ARZR9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/yaxiu/1/8_62MRZWQ309YBMC5YCXJ300J91ZPY9I.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/yaxiu/1/9_ZM63PF517FZPNFPC6BWOEPF8YQ61KD.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/yaxiu:1",
                "plots": "https://api.plotly.com/v2/plots/yaxiu:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=yaxiu"
            },
            "owner": "yaxiu",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~yaxiu/1/",
            "world_readable": true,
            "date_modified": "2025-08-20T11:33:24.913Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~yaxiu/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "贮藏时间",
                                "y": "维生素C含量(mg/100g)",
                                "error_y": {
                                    "array": "维生素C含量(mg/100g)",
                                    "arrayminus": "维生素C含量(mg/100g)"
                                }
                            }
                        },
                        "mode": "markers",
                        "type": "bar",
                        "xsrc": "yaxiu:0:161afc",
                        "ysrc": "yaxiu:0:bb3227",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "维生素C含量(mg/100g)",
                                    "arrayminus": "维生素C含量(mg/100g)"
                                }
                            },
                            "arraysrc": "yaxiu:0:bb3227",
                            "arrayminussrc": "yaxiu:0:bb3227"
                        },
                        "transforms": [
                            {
                                "meta": {
                                    "columnNames": {
                                        "groups": ""
                                    }
                                },
                                "type": "aggregate",
                                "aggregations": [
                                    {
                                        "func": "avg",
                                        "target": "y",
                                        "enabled": true
                                    },
                                    {
                                        "func": "first",
                                        "target": "x",
                                        "enabled": true
                                    },
                                    {
                                        "func": "stddev",
                                        "target": "error_y.array",
                                        "enabled": true
                                    },
                                    {
                                        "func": "stddev",
                                        "target": "error_y.arrayminus",
                                        "enabled": true
                                    }
                                ]
                            },
                            {
                                "meta": {
                                    "columnNames": {
                                        "groups": "塑化剂种类"
                                    }
                                },
                                "type": "groupby",
                                "styles": [
                                    {
                                        "value": {},
                                        "target": "甘油"
                                    },
                                    {
                                        "value": {},
                                        "target": "乙二胆碱"
                                    },
                                    {
                                        "value": {},
                                        "target": "Des1"
                                    },
                                    {
                                        "value": {},
                                        "target": "Des2"
                                    },
                                    {
                                        "value": {},
                                        "target": "空白对照"
                                    }
                                ],
                                "groupssrc": "yaxiu:0:311f07"
                            }
                        ],
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "Linear Fit in Python"
                    },
                    "xaxis": {
                        "type": "linear",
                        "dtick": 4,
                        "range": [
                            -2,
                            39.132075471698116
                        ],
                        "ticks": "",
                        "ticklen": 5,
                        "showgrid": false,
                        "showline": false,
                        "tickmode": "linear",
                        "zeroline": false,
                        "autorange": false,
                        "tickwidth": 1,
                        "automargin": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            4.220812386101061
                        ],
                        "autorange": false
                    },
                    "autosize": true,
                    "annotations": [
                        {
                            "x": 1.5733944954128443,
                            "y": 16.25337837837838,
                            "font": {
                                "size": 16
                            },
                            "text": "$R^2 = 0.9551,\\Y = nanX + nan$",
                            "showarrow": false
                        }
                    ],
                    "plot_bgcolor": "rgb(229, 229, 229)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~yaxiu",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/19.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-3.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-20 11:31:15",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "yaxiu",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}