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=cj0xJnA9MjAyNS0wOC0yOSswMCUzQTM0JTNBMzAuMjAxOTA5JTJCMDAlM0EwMA%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=cD0yMDI1LTA4LTI5KzAwJTNBNTYlM0E1MC4wNjY2NTIlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plotly.com/v2/plots?cursor=cj0xJnA9MjAyNS0wOC0yOSswMyUzQTI0JTNBMjguMzA4NjY4JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-08-29T03:24:28.308668Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jimmyg23/634.embed",
            "fid": "jimmyg23:634",
            "filename": "UAN 28",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/634/9_U464K9MPP2U9CPU87CK08UFL9RR8EP.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/634/2_AEQIXDU2OA9IS1R3NV92VH89IN5T6Q.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/634/8_UYCOM2ETM7YEQYRVP00LRYJQ03OSWZ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/634/9_U464K9MPP2U9CPU87CK08UFL9RR8EP.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jimmyg23:634",
                "plots": "https://api.plotly.com/v2/plots/jimmyg23:634",
                "parent": "https://api.plotly.com/v2/folders/home?user=jimmyg23"
            },
            "owner": "jimmyg23",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~jimmyg23/634/",
            "world_readable": true,
            "date_modified": "2025-08-29T09:25:13.015Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jimmyg23/634/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "#AA0DFE",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "URAN28"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>2009</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:635:99f2d2",
                        "ysrc": "jimmyg23:635:652384",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#3283FE",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2010"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>2010</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:635:99f2d2",
                        "ysrc": "jimmyg23:635:841e87",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#85660D",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2011"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>2011</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:635:99f2d2",
                        "ysrc": "jimmyg23:635:71b16f",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#782AB6",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2012"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:635:99f2d2",
                        "ysrc": "jimmyg23:635:03f4a3",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#565656",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2013"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:635:99f2d2",
                        "ysrc": "jimmyg23:635:c22ff9",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(230, 179, 223)",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2014"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:635:99f2d2",
                        "ysrc": "jimmyg23:635:ea79ae",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(127, 117, 87)",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2015"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:635:99f2d2",
                        "ysrc": "jimmyg23:635:aea270",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#F7E1A0",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2016"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:635:99f2d2",
                        "ysrc": "jimmyg23:635:dc4a9e",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(195, 29, 91)",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2017"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:635:99f2d2",
                        "ysrc": "jimmyg23:635:f58ab6",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#1CBE4F",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2018"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:635:99f2d2",
                        "ysrc": "jimmyg23:635:3876aa",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(196, 114, 28)",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2019"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:635:99f2d2",
                        "ysrc": "jimmyg23:635:6e7b06",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(160, 253, 226)",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2020"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:635:99f2d2",
                        "ysrc": "jimmyg23:635:9d67f6",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(11, 10, 11)",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2021"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:635:99f2d2",
                        "ysrc": "jimmyg23:635:9f33dd",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(43, 175, 33)",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2022"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:635:99f2d2",
                        "ysrc": "jimmyg23:635:6161b4",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#FEAF16",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2023"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:635:99f2d2",
                        "ysrc": "jimmyg23:635:9a075f",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#F8A19F",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2024"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:635:99f2d2",
                        "ysrc": "jimmyg23:635:6e11a7",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(43, 44, 169)",
                            "width": 7
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2025"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:635:99f2d2",
                        "ysrc": "jimmyg23:635:c4bacb",
                        "visible": true,
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 17,
                        "color": "rgb(23, 50, 80)",
                        "family": "Droid Sans"
                    },
                    "title": {
                        "text": "UAN 28"
                    },
                    "width": 1800,
                    "xaxis": {
                        "type": "category",
                        "range": [
                            1,
                            52
                        ],
                        "tick0": 0,
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "color": "rgb(1, 5, 9)"
                            }
                        },
                        "ticklen": 6,
                        "showline": true,
                        "tickfont": {
                            "color": "rgb(0, 7, 13)",
                            "family": "Overpass"
                        },
                        "tickmode": "linear",
                        "autorange": false,
                        "linewidth": 3,
                        "tickangle": 45
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            42.25637486055556,
                            110.17235584944444
                        ],
                        "ticks": "outside",
                        "ticklen": 6,
                        "showline": true,
                        "autorange": true,
                        "linewidth": 3
                    },
                    "height": 750,
                    "legend": {
                        "x": 1.0140764892391634,
                        "y": 0.8963513610572434
                    },
                    "margin": {
                        "b": 68,
                        "l": 56,
                        "r": 65,
                        "t": 70,
                        "pad": 0
                    },
                    "autosize": false,
                    "plot_bgcolor": "rgb(255, 255, 255)",
                    "paper_bgcolor": "rgb(255, 255, 255)"
                }
            },
            "height": 750,
            "width": 1800,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jimmyg23",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/81.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-03-19 23:02:49",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jimmyg23",
                "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-29T03:15:14.125627Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~panhaplotly/1.embed",
            "fid": "panhaplotly:1",
            "filename": "Adaptive-PID Test Data",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/panhaplotly/1/9_TAD8GY5ZF9YB6SNJ55GX66X5C20QA1.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/panhaplotly/1/2_RQANB27T6JZ3RJOJ45XAEUH3MEBEHY.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/panhaplotly/1/8_AWX1M1B5HG6NN55MRTWZ5UX063B94J.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/panhaplotly/1/9_TAD8GY5ZF9YB6SNJ55GX66X5C20QA1.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/panhaplotly:1",
                "plots": "https://api.plotly.com/v2/plots/panhaplotly:1",
                "parent": "https://api.plotly.com/v2/folders/home?user=panhaplotly"
            },
            "owner": "panhaplotly",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~panhaplotly/1/",
            "world_readable": true,
            "date_modified": "2025-08-29T03:45:53.909Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~panhaplotly/1/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "fill": "none",
                        "line": {
                            "dash": "dashdot",
                            "shape": "spline",
                            "width": 2,
                            "smoothing": 0.9
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "<b>20 RPM</b>",
                        "type": "scatter",
                        "xsrc": "panhaplotly:0:59bdb2",
                        "ysrc": "panhaplotly:0:ede363",
                        "marker": {
                            "line": {
                                "width": 0
                            },
                            "size": 6,
                            "maxdisplayed": 0
                        },
                        "error_y": {
                            "type": "percent",
                            "color": "#636efa",
                            "value": 10,
                            "width": 4,
                            "visible": false,
                            "symmetric": true,
                            "thickness": 2
                        },
                        "opacity": 1,
                        "autocolorscale": true
                    },
                    {
                        "fill": "none",
                        "line": {
                            "dash": "longdashdot",
                            "shape": "spline",
                            "width": 2
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "C"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "<b>30 RPM</b>",
                        "type": "scatter",
                        "xsrc": "panhaplotly:0:59bdb2",
                        "ysrc": "panhaplotly:0:c7e636",
                        "marker": {
                            "symbol": "circle"
                        },
                        "cliponaxis": true,
                        "stackgroup": null,
                        "connectgaps": false,
                        "hovertemplate": ""
                    },
                    {
                        "line": {
                            "shape": "spline",
                            "smoothing": 0.8
                        },
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "D"
                            }
                        },
                        "mode": "markers+lines",
                        "name": "<b>50 RPM</b>",
                        "type": "scatter",
                        "xsrc": "panhaplotly:0:59bdb2",
                        "ysrc": "panhaplotly:0:682168",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "polar": {
                        "radialaxis": {
                            "range": [
                                0,
                                1
                            ],
                            "autorange": true
                        },
                        "angularaxis": {}
                    },
                    "scene": {
                        "camera": {
                            "up": {
                                "x": 0,
                                "y": 0,
                                "z": 1
                            },
                            "eye": {
                                "x": 0.0057735026918962614,
                                "y": 0.005773502691896261,
                                "z": 0.0057735026918962614
                            },
                            "center": {
                                "x": 0,
                                "y": 0,
                                "z": 0
                            },
                            "projection": {
                                "type": "perspective"
                            }
                        },
                        "aspectmode": "auto",
                        "aspectratio": {
                            "x": 1,
                            "y": 1,
                            "z": 1
                        }
                    },
                    "title": {
                        "x": 0.3,
                        "font": {
                            "size": 24
                        },
                        "text": "Data at Different Speeds and Loads:"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -0.6612132352941177,
                            11.561213235294119
                        ],
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "LOAD(Kg)"
                        },
                        "autorange": true,
                        "showspikes": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.04512743628185903,
                            2.445127436281859
                        ],
                        "title": {
                            "font": {
                                "size": 20
                            },
                            "text": "CUURENT(A)"
                        },
                        "autorange": true,
                        "showspikes": true
                    },
                    "legend": {
                        "x": 1.02,
                        "y": 1.02,
                        "title": {
                            "font": {
                                "size": 18
                            },
                            "text": "<b>Speed</b>"
                        },
                        "valign": "top",
                        "xanchor": "center",
                        "yanchor": "auto",
                        "borderwidth": 2,
                        "orientation": "v"
                    },
                    "autosize": true,
                    "dragmode": "pan",
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "hovermode": "x"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~panhaplotly",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/49.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-8.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-29 03:12:44",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "panhaplotly",
                "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-29T03:03:00.101510Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jimmyg23/631.embed",
            "fid": "jimmyg23:631",
            "filename": "POTASH",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/631/9_0N0QX29XAR6PNPTE392EHA9H2EIJ95.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/631/2_2ROFEJSZHQV8M4WE1LZ58299JAESSU.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/631/8_0JH2R4DB7P181TR2G8PUK75J67KD2T.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/631/9_0N0QX29XAR6PNPTE392EHA9H2EIJ95.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jimmyg23:631",
                "plots": "https://api.plotly.com/v2/plots/jimmyg23:631",
                "parent": "https://api.plotly.com/v2/folders/home?user=jimmyg23"
            },
            "owner": "jimmyg23",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~jimmyg23/631/",
            "world_readable": true,
            "date_modified": "2025-08-29T03:12:54.222Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jimmyg23/631/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "#AA0DFE",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "POT09"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>2009</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:632:9e619d",
                        "ysrc": "jimmyg23:632:9b00d7",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#3283FE",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2010"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:632:9e619d",
                        "ysrc": "jimmyg23:632:518082",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#85660D",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2011"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:632:9e619d",
                        "ysrc": "jimmyg23:632:87d015",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(0, 0, 0)",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2012"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:632:9e619d",
                        "ysrc": "jimmyg23:632:e4228c",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#565656",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2013"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:632:9e619d",
                        "ysrc": "jimmyg23:632:f820bd",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#1C8356",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2014"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:632:9e619d",
                        "ysrc": "jimmyg23:632:aca416",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#16FF32",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2015"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:632:9e619d",
                        "ysrc": "jimmyg23:632:798ecd",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#F7E1A0",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2016"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:632:9e619d",
                        "ysrc": "jimmyg23:632:a9d54e",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#E2E2E2",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2017"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:632:9e619d",
                        "ysrc": "jimmyg23:632:7ef4e0",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#1CBE4F",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2018"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:632:9e619d",
                        "ysrc": "jimmyg23:632:8f2113",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#C4451C",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2019"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:632:9e619d",
                        "ysrc": "jimmyg23:632:f4bfeb",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(52, 203, 198)",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2020"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:632:9e619d",
                        "ysrc": "jimmyg23:632:ebf708",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(228, 254, 0)",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2021"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:632:9e619d",
                        "ysrc": "jimmyg23:632:13947b",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(231, 3, 0)",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2022"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:632:9e619d",
                        "ysrc": "jimmyg23:632:6c94b2",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#FEAF16",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2023"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:632:9e619d",
                        "ysrc": "jimmyg23:632:52f924",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#F8A19F",
                            "width": 4
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2024"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:632:9e619d",
                        "ysrc": "jimmyg23:632:83dd94",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(28, 30, 173)",
                            "width": 6
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2025"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:632:9e619d",
                        "ysrc": "jimmyg23:632:b7daf4",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 17,
                        "color": "rgb(23, 50, 80)",
                        "family": "Droid Sans"
                    },
                    "title": {
                        "text": "POTASH"
                    },
                    "width": 1700,
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            52
                        ],
                        "tick0": 0,
                        "ticks": "outside",
                        "showline": true,
                        "tickfont": {
                            "size": 18,
                            "color": "rgb(0, 0, 0)",
                            "family": "Overpass"
                        },
                        "tickmode": "auto",
                        "autorange": true,
                        "linewidth": 2,
                        "tickangle": 45
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            59.26719851499999,
                            243.91537281499998
                        ],
                        "ticks": "outside",
                        "showline": true,
                        "autorange": true,
                        "linewidth": 2
                    },
                    "height": 750,
                    "legend": {
                        "x": 1.085056786706324,
                        "y": 0.9535409035409036
                    },
                    "margin": {
                        "b": 68,
                        "l": 50,
                        "r": 65,
                        "t": 70,
                        "pad": 0
                    },
                    "autosize": true,
                    "plot_bgcolor": "rgb(255, 255, 255)",
                    "paper_bgcolor": "rgb(255, 255, 255)"
                }
            },
            "height": 750,
            "width": 1700,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jimmyg23",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/81.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-03-19 23:02:49",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jimmyg23",
                "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-29T02:46:43.993768Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jimmyg23/628.embed",
            "fid": "jimmyg23:628",
            "filename": "MAP",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/628/9_TVQTNARHQH385XRYRXLT9M8H0Q80AF.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/628/2_XGYPQF6DXU655TTRVEFWH4F6EP2C6B.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/628/8_A3XZQ7JM1IFAUS05EWNHJ4SB7LRYG6.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/628/9_TVQTNARHQH385XRYRXLT9M8H0Q80AF.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jimmyg23:628",
                "plots": "https://api.plotly.com/v2/plots/jimmyg23:628",
                "parent": "https://api.plotly.com/v2/folders/home?user=jimmyg23"
            },
            "owner": "jimmyg23",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~jimmyg23/628/",
            "world_readable": true,
            "date_modified": "2025-08-29T02:54:05.819Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jimmyg23/628/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "#1f77b4",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2009"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:629:ce1f5d",
                        "ysrc": "jimmyg23:629:48a979",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#ff7f0e",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2010"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:629:ce1f5d",
                        "ysrc": "jimmyg23:629:975a27",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#2ca02c",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2011"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:629:ce1f5d",
                        "ysrc": "jimmyg23:629:5be4ef",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#d62728",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2012"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:629:ce1f5d",
                        "ysrc": "jimmyg23:629:7081ab",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#9467bd",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2013"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:629:ce1f5d",
                        "ysrc": "jimmyg23:629:631c16",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#8c564b",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2014"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:629:ce1f5d",
                        "ysrc": "jimmyg23:629:7614f7",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#e377c2",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2015"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:629:ce1f5d",
                        "ysrc": "jimmyg23:629:abf29e",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#7f7f7f",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2016"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:629:ce1f5d",
                        "ysrc": "jimmyg23:629:1404a6",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#bcbd22",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2017"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:629:ce1f5d",
                        "ysrc": "jimmyg23:629:3d4c25",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#17becf",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2018"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:629:ce1f5d",
                        "ysrc": "jimmyg23:629:3f202b",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#1f77b4",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2019"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:629:ce1f5d",
                        "ysrc": "jimmyg23:629:1ef4e3",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#ff7f0e",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2020"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:629:ce1f5d",
                        "ysrc": "jimmyg23:629:8925b3",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#2ca02c",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2021"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:629:ce1f5d",
                        "ysrc": "jimmyg23:629:db7f24",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#d62728",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2022"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:629:ce1f5d",
                        "ysrc": "jimmyg23:629:d8d99b",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#9467bd",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2023"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:629:ce1f5d",
                        "ysrc": "jimmyg23:629:544440",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "#8c564b",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "2024"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>%{meta.columnNames.y}</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:629:ce1f5d",
                        "ysrc": "jimmyg23:629:09169d",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(56, 70, 184)",
                            "width": 6
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "MAP2025"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>2025</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:629:ce1f5d",
                        "ysrc": "jimmyg23:629:264a3c",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 17,
                        "color": "rgb(23, 50, 80)",
                        "family": "Droid Sans"
                    },
                    "title": {
                        "text": "MAP"
                    },
                    "width": 1700,
                    "xaxis": {
                        "type": "category",
                        "range": [
                            0,
                            52
                        ],
                        "ticks": "outside",
                        "ticklen": 6,
                        "showline": true,
                        "tickfont": {
                            "size": 17,
                            "color": "rgb(0, 8, 18)",
                            "family": "Overpass"
                        },
                        "autorange": true,
                        "linewidth": 2,
                        "tickangle": 45
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            76.0049916761111,
                            228.5800807538889
                        ],
                        "ticks": "outside",
                        "showline": true,
                        "autorange": false,
                        "linewidth": 2
                    },
                    "height": 750,
                    "legend": {
                        "x": 1.0254587271082645,
                        "y": 0.9535409035409036
                    },
                    "margin": {
                        "b": 68,
                        "l": 50,
                        "r": 65,
                        "t": 70,
                        "pad": 0
                    },
                    "autosize": true,
                    "plot_bgcolor": "rgb(255, 255, 255)",
                    "paper_bgcolor": "rgb(255, 255, 255)"
                }
            },
            "height": 750,
            "width": 1700,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jimmyg23",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/81.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-03-19 23:02:49",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jimmyg23",
                "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-29T01:52:26.670093Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kez/9.embed",
            "fid": "kez:9",
            "filename": "Plot 9",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kez/9/9_7N07CUHDTGLYXULGFKXPCKV6CTFQNG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kez/9/2_A8XK6XZ36YVOZQROGZJJ8UD0YI3TCH.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kez/9/8_97U0OV0W9UGFYQE34ML5FEX6K13EJU.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kez/9/9_7N07CUHDTGLYXULGFKXPCKV6CTFQNG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kez:9",
                "plots": "https://api.plotly.com/v2/plots/kez:9",
                "parent": "https://api.plotly.com/v2/folders/home?user=kez"
            },
            "owner": "kez",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~kez/9/",
            "world_readable": true,
            "date_modified": "2025-08-29T06:18:39.258Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kez/9/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": " DATE ",
                                "y": " Total Sales ",
                                "text": "E",
                                "textposition": ""
                            }
                        },
                        "mode": "markers",
                        "name": "TOTAL SALES",
                        "type": "bar",
                        "xsrc": "kez:8:71c58c",
                        "ysrc": "kez:8:4c21a9",
                        "opacity": 0.7,
                        "textsrc": "kez:8:92d73c",
                        "textfont": {
                            "size": 13
                        },
                        "orientation": "v",
                        "textposition": "inside",
                        "texttemplate": "",
                        "constraintext": "outside"
                    },
                    {
                        "line": {
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": " DATE ",
                                "y": " Total Quantity "
                            }
                        },
                        "mode": "markers+lines",
                        "name": "TOTAL QUANTITY",
                        "type": "scatter",
                        "xsrc": "kez:8:71c58c",
                        "ysrc": "kez:8:a23e70",
                        "yaxis": "y2",
                        "marker": {
                            "size": 8,
                            "symbol": "diamond"
                        },
                        "hoveron": "points+fills",
                        "orientation": "v"
                    },
                    {
                        "line": {
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": " DATE ",
                                "y": " Average Price "
                            }
                        },
                        "mode": "markers+lines",
                        "name": "AVERAGE PRICE",
                        "type": "scatter",
                        "xsrc": "kez:8:71c58c",
                        "ysrc": "kez:8:bddadf",
                        "yaxis": "y3",
                        "marker": {
                            "size": 8,
                            "symbol": "star-triangle-down"
                        },
                        "hoveron": "points+fills",
                        "visible": true
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "size": 22
                        },
                        "text": "<b>REFINED SUGAR SALES</b>"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5689994935437175,
                            9.568999493543718
                        ],
                        "title": {
                            "font": {
                                "size": 18
                            },
                            "text": "<b>DATE</b>"
                        },
                        "domain": [
                            0.09,
                            1
                        ],
                        "showgrid": false,
                        "showline": false,
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            0,
                            559222707.5263158
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 15,
                                "color": "rgb(31, 119, 180)"
                            },
                            "text": "<b>TOTAL SALES</b>"
                        },
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": true,
                        "tickwidth": 2
                    },
                    "bargap": 0.35,
                    "legend": {
                        "x": 0.7615458937198067,
                        "y": 1.2115137674727614
                    },
                    "yaxis2": {
                        "side": "right",
                        "range": [
                            9626.481965403022,
                            198222.518034597
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 15,
                                "color": "rgb(255, 127, 14)"
                            },
                            "text": "<b>TOTAL QUANTITY</b>"
                        },
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": true,
                        "tickwidth": 2,
                        "overlaying": "y"
                    },
                    "yaxis3": {
                        "side": "left",
                        "range": [
                            2758.5791737210156,
                            3034.910826278984
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 15,
                                "color": "rgb(44, 160, 44)"
                            },
                            "text": "<b>AVERAGE PRICE</b>"
                        },
                        "anchor": "free",
                        "domain": [
                            0,
                            1
                        ],
                        "ticklen": 7,
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": true,
                        "overlaying": "y"
                    },
                    "autosize": true,
                    "colorway": [
                        "#1f77b4",
                        "#ff7f0e",
                        "#2ca02c",
                        "#d62728",
                        "#9467bd",
                        "#8c564b",
                        "#e377c2",
                        "#7f7f7f",
                        "#bcbd22",
                        "#17becf"
                    ],
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "plot_bgcolor": "rgb(235, 237, 243)",
                    "paper_bgcolor": "rgb(227, 227, 233)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kez",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-28 05:26:38",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kez",
                "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-29T01:31:13.705750Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kez/7.embed",
            "fid": "kez:7",
            "filename": "Plot 7",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kez/7/9_NOYBVRL9NKRCDC3NE2UQMG3Q1CC0DH.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kez/7/2_2UUD9ZELQ5Q2ED0S9M538BZJB809XG.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kez/7/8_6NPBHAREGGRBRV8YFRPCG3Y7KVU9HH.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kez/7/9_NOYBVRL9NKRCDC3NE2UQMG3Q1CC0DH.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kez:7",
                "plots": "https://api.plotly.com/v2/plots/kez:7",
                "parent": "https://api.plotly.com/v2/folders/home?user=kez"
            },
            "owner": "kez",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~kez/7/",
            "world_readable": true,
            "date_modified": "2025-08-29T05:41:00.664Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kez/7/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": " DATE ",
                                "y": " Total Sales ",
                                "text": "E"
                            }
                        },
                        "mode": "markers",
                        "name": "TOTAL SALES",
                        "type": "bar",
                        "xsrc": "kez:6:e3e4a8",
                        "ysrc": "kez:6:d52cb8",
                        "opacity": 0.7,
                        "textsrc": "kez:6:68761e",
                        "textfont": {
                            "size": 14,
                            "color": "rgb(239, 239, 245)",
                            "family": "Old Standard TT"
                        },
                        "textangle": "auto",
                        "cliponaxis": true,
                        "orientation": "v",
                        "textposition": "inside"
                    },
                    {
                        "line": {
                            "width": 2.5
                        },
                        "meta": {
                            "columnNames": {
                                "x": " DATE ",
                                "y": " Total Quantity "
                            }
                        },
                        "mode": "markers+lines",
                        "name": "TOTAL QUANTITY",
                        "type": "scatter",
                        "xsrc": "kez:6:e3e4a8",
                        "ysrc": "kez:6:a026d9",
                        "yaxis": "y2",
                        "marker": {
                            "size": 8,
                            "symbol": "pentagon"
                        },
                        "hoveron": "points+fills",
                        "orientation": "v"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "width": 2.5
                        },
                        "meta": {
                            "columnNames": {
                                "x": " DATE ",
                                "y": " Average Price "
                            }
                        },
                        "mode": "markers+lines",
                        "name": "AVERAGE PRICE",
                        "type": "scatter",
                        "xsrc": "kez:6:e3e4a8",
                        "ysrc": "kez:6:2aeba1",
                        "yaxis": "y3",
                        "marker": {
                            "size": 8,
                            "symbol": "star"
                        },
                        "hoveron": "points+fills",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "size": 22
                        },
                        "text": "<b>RAW SUGAR SALES</b>"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5689994935437175,
                            9.568999493543718
                        ],
                        "title": {
                            "font": {
                                "size": 18
                            },
                            "text": "<b>DATE</b>"
                        },
                        "domain": [
                            0.09,
                            1
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            0,
                            203389000
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 15,
                                "color": "rgb(27, 158, 119)"
                            },
                            "text": "<b>TOTAL SALES</b>"
                        },
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": true,
                        "tickwidth": 2
                    },
                    "bargap": 0.30000000000000004,
                    "legend": {
                        "x": 0.7718811092401326,
                        "y": 1.1856498026932811
                    },
                    "yaxis2": {
                        "side": "right",
                        "range": [
                            -2448.5899669570445,
                            82600.58996695705
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 15,
                                "color": "rgb(217, 95, 2)"
                            },
                            "text": "<b>TOTAL QUANTITY</b>"
                        },
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": true,
                        "tickwidth": 2,
                        "overlaying": "y"
                    },
                    "yaxis3": {
                        "side": "left",
                        "range": [
                            2458.956151997597,
                            3007.783848002403
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 15,
                                "color": "rgb(117, 112, 179)"
                            },
                            "text": "<b>AVERAGE PRICE</b>"
                        },
                        "anchor": "free",
                        "domain": [
                            0,
                            1
                        ],
                        "ticklen": 7,
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": true,
                        "tickwidth": 1,
                        "overlaying": "y"
                    },
                    "barmode": "group",
                    "autosize": true,
                    "colorway": [
                        "#1b9e77",
                        "#d95f02",
                        "#7570b3",
                        "#e7298a",
                        "#66a61e",
                        "#e6ab02",
                        "#a6761d",
                        "#666666"
                    ],
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "plot_bgcolor": "rgb(243, 238, 238)",
                    "paper_bgcolor": "rgb(236, 232, 232)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kez",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-28 05:26:38",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kez",
                "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-29T01:12:26.003728Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~kez/5.embed",
            "fid": "kez:5",
            "filename": "Plot 5",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/kez/5/9_8499K9HJ3P716UHGKPS9GMBVBAG5ZB.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/kez/5/2_Y4RAV5V3B63CESMOLAP0XM0QAKOPM0.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/kez/5/8_3JREEDTVUZM6XHNESPJCD6ZJ0NBQIJ.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/kez/5/9_8499K9HJ3P716UHGKPS9GMBVBAG5ZB.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/kez:5",
                "plots": "https://api.plotly.com/v2/plots/kez:5",
                "parent": "https://api.plotly.com/v2/folders/home?user=kez"
            },
            "owner": "kez",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~kez/5/",
            "world_readable": true,
            "date_modified": "2025-08-29T06:17:38.191Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~kez/5/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": " DATE ",
                                "y": " Total Sales ",
                                "text": "E",
                                "textposition": ""
                            }
                        },
                        "mode": "markers",
                        "name": "TOTAL SALES",
                        "type": "bar",
                        "xsrc": "kez:4:0c4068",
                        "ysrc": "kez:4:9db9cb",
                        "opacity": 0.8,
                        "textsrc": "kez:4:5dfc07",
                        "visible": true,
                        "textfont": {
                            "size": 12,
                            "family": "Droid Serif"
                        },
                        "textangle": "auto",
                        "cliponaxis": false,
                        "orientation": "v",
                        "textposition": "inside",
                        "constraintext": "none"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "width": 2.5
                        },
                        "meta": {
                            "columnNames": {
                                "x": " DATE ",
                                "y": " Total Quantity "
                            }
                        },
                        "mode": "markers+lines",
                        "name": "TOTAL QUANTITY",
                        "type": "scatter",
                        "xsrc": "kez:4:0c4068",
                        "ysrc": "kez:4:bb2650",
                        "yaxis": "y2",
                        "marker": {
                            "line": {
                                "color": "rgb(245, 133, 24)",
                                "width": 1
                            },
                            "size": 7,
                            "symbol": "hexagram"
                        },
                        "hoveron": "points+fills",
                        "connectgaps": false,
                        "orientation": "v"
                    },
                    {
                        "line": {
                            "width": 2.5
                        },
                        "meta": {
                            "columnNames": {
                                "x": " DATE ",
                                "y": " Average Price "
                            }
                        },
                        "mode": "markers+lines",
                        "name": "AVERAGE PRICE",
                        "type": "scatter",
                        "xsrc": "kez:4:0c4068",
                        "ysrc": "kez:4:b840cf",
                        "xaxis": "x",
                        "yaxis": "y3",
                        "marker": {
                            "size": 7,
                            "symbol": "square"
                        },
                        "hoveron": "points+fills",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "font": {
                            "size": 22
                        },
                        "text": "<b>MOLASSES SALES</b>"
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5596076657501845,
                            9.559607665750185
                        ],
                        "ticks": "",
                        "title": {
                            "font": {
                                "size": 18
                            },
                            "text": "<b>DATE</b>"
                        },
                        "domain": [
                            0.08,
                            1
                        ],
                        "autorange": true,
                        "automargin": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            204947368.42105263
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 15,
                                "color": "rgb(76, 120, 168)"
                            },
                            "text": "<b>TOTAL SALES</b>"
                        },
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": true,
                        "gridcolor": "rgb(237, 237, 237)",
                        "tickwidth": 2
                    },
                    "bargap": 0.4,
                    "legend": {
                        "x": 0.7655374579353192,
                        "y": 1.1716857610474634
                    },
                    "yaxis2": {
                        "side": "right",
                        "type": "linear",
                        "range": [
                            -1123.3252131546892,
                            16623.32521315469
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 15,
                                "color": "rgb(245, 133, 24)"
                            },
                            "text": "<b>TOTAL QUANTITY</b>"
                        },
                        "ticklen": 5,
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": true,
                        "tickwidth": 2,
                        "overlaying": "y"
                    },
                    "yaxis3": {
                        "side": "left",
                        "type": "linear",
                        "range": [
                            -1268.2704019488426,
                            18768.27040194884
                        ],
                        "ticks": "inside",
                        "title": {
                            "font": {
                                "size": 15,
                                "color": "rgb(228, 87, 86)"
                            },
                            "text": "<b>AVERAGE PRICE</b>"
                        },
                        "anchor": "free",
                        "domain": [
                            0,
                            1
                        ],
                        "ticklen": 7,
                        "showgrid": false,
                        "zeroline": false,
                        "autorange": true,
                        "overlaying": "y"
                    },
                    "autosize": true,
                    "colorway": [
                        "#4c78a8",
                        "#f58518",
                        "#e45756",
                        "#72b7b2",
                        "#54a24b",
                        "#eeca3b",
                        "#b279a2",
                        "#ff9da6",
                        "#9d755d",
                        "#bab0ac"
                    ],
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    },
                    "clickmode": "event+select",
                    "colorscale": {
                        "sequential": [
                            [
                                0,
                                "#f7fcf5"
                            ],
                            [
                                0.125,
                                "#e5f5e0"
                            ],
                            [
                                0.25,
                                "#c7e9c0"
                            ],
                            [
                                0.375,
                                "#a1d99b"
                            ],
                            [
                                0.5,
                                "#74c476"
                            ],
                            [
                                0.625,
                                "#41ab5d"
                            ],
                            [
                                0.75,
                                "#238b45"
                            ],
                            [
                                0.875,
                                "#006d2c"
                            ],
                            [
                                1,
                                "#00441b"
                            ]
                        ]
                    },
                    "bargroupgap": 0.03,
                    "plot_bgcolor": "rgb(237, 237, 237)",
                    "paper_bgcolor": "rgb(231, 227, 227)"
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~kez",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/97.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-5.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-28 05:26:38",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "kez",
                "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-29T01:11:15.148552Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~satthudeptrai2011/11.embed",
            "fid": "satthudeptrai2011:11",
            "filename": "Visual Wheel Odom",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/satthudeptrai2011/11/9_3FPE5ADET4SR9O43C3CSSKDIERY9RS.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/satthudeptrai2011/11/2_58P9FRQHS0NC8JYR6TNJBXPTKAD7T5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/satthudeptrai2011/11/8_GFTXN3ERPK8IASK8NZ1QD73WJBL3VW.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/satthudeptrai2011/11/9_3FPE5ADET4SR9O43C3CSSKDIERY9RS.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/satthudeptrai2011:11",
                "plots": "https://api.plotly.com/v2/plots/satthudeptrai2011:11",
                "parent": "https://api.plotly.com/v2/folders/home?user=satthudeptrai2011"
            },
            "owner": "satthudeptrai2011",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~satthudeptrai2011/11/",
            "world_readable": true,
            "date_modified": "2025-08-29T01:11:15.157Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~satthudeptrai2011/11/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "Wheel Odometry",
                        "type": "scatter",
                        "xsrc": "satthudeptrai2011:10:d74ed9",
                        "ysrc": "satthudeptrai2011:10:1ac85c"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "E"
                            }
                        },
                        "mode": "lines",
                        "name": "Visual Wheel Odometry",
                        "type": "scatter",
                        "xsrc": "satthudeptrai2011:10:0cd82f",
                        "ysrc": "satthudeptrai2011:10:5ca7a3",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "G",
                                "y": "H"
                            }
                        },
                        "mode": "lines",
                        "name": "Visual Odometry (scale x20)",
                        "type": "scatter",
                        "xsrc": "satthudeptrai2011:10:d3d510",
                        "ysrc": "satthudeptrai2011:10:038b60",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            -5.99761125833456,
                            13.4285096107321
                        ],
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -9.253164684496925,
                            2.9518927947437543
                        ],
                        "autorange": true
                    },
                    "autosize": true,
                    "template": {
                        "data": {
                            "bar": [
                                {
                                    "type": "bar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "table": [
                                {
                                    "type": "table",
                                    "cells": {
                                        "fill": {
                                            "color": "#EBF0F8"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    },
                                    "header": {
                                        "fill": {
                                            "color": "#C8D4E3"
                                        },
                                        "line": {
                                            "color": "white"
                                        }
                                    }
                                }
                            ],
                            "carpet": [
                                {
                                    "type": "carpet",
                                    "aaxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    },
                                    "baxis": {
                                        "gridcolor": "#C8D4E3",
                                        "linecolor": "#C8D4E3",
                                        "endlinecolor": "#2a3f5f",
                                        "minorgridcolor": "#C8D4E3",
                                        "startlinecolor": "#2a3f5f"
                                    }
                                }
                            ],
                            "mesh3d": [
                                {
                                    "type": "mesh3d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "contour": [
                                {
                                    "type": "contour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "heatmap": [
                                {
                                    "type": "heatmap",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatter": [
                                {
                                    "type": "scatter",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "surface": [
                                {
                                    "type": "surface",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "heatmapgl": [
                                {
                                    "type": "heatmapgl",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "histogram": [
                                {
                                    "type": "histogram",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "parcoords": [
                                {
                                    "line": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    },
                                    "type": "parcoords"
                                }
                            ],
                            "scatter3d": [
                                {
                                    "type": "scatter3d",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattergl": [
                                {
                                    "type": "scattergl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "choropleth": [
                                {
                                    "type": "choropleth",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattergeo": [
                                {
                                    "type": "scattergeo",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2d": [
                                {
                                    "type": "histogram2d",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ],
                            "scatterpolar": [
                                {
                                    "type": "scatterpolar",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "contourcarpet": [
                                {
                                    "type": "contourcarpet",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    }
                                }
                            ],
                            "scattercarpet": [
                                {
                                    "type": "scattercarpet",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scattermapbox": [
                                {
                                    "type": "scattermapbox",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterpolargl": [
                                {
                                    "type": "scatterpolargl",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "scatterternary": [
                                {
                                    "type": "scatterternary",
                                    "marker": {
                                        "colorbar": {
                                            "ticks": "",
                                            "outlinewidth": 0
                                        }
                                    }
                                }
                            ],
                            "histogram2dcontour": [
                                {
                                    "type": "histogram2dcontour",
                                    "colorbar": {
                                        "ticks": "",
                                        "outlinewidth": 0
                                    },
                                    "autocolorscale": true
                                }
                            ]
                        },
                        "layout": {
                            "geo": {
                                "bgcolor": "white",
                                "showland": true,
                                "lakecolor": "white",
                                "landcolor": "white",
                                "showlakes": true,
                                "subunitcolor": "#C8D4E3"
                            },
                            "font": {
                                "color": "#2a3f5f"
                            },
                            "polar": {
                                "bgcolor": "white",
                                "radialaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                },
                                "angularaxis": {
                                    "ticks": "",
                                    "gridcolor": "#EBF0F8",
                                    "linecolor": "#EBF0F8"
                                }
                            },
                            "scene": {
                                "xaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "yaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                },
                                "zaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "gridwidth": 2,
                                    "linecolor": "#EBF0F8",
                                    "zerolinecolor": "#EBF0F8",
                                    "showbackground": true,
                                    "backgroundcolor": "white"
                                }
                            },
                            "title": {
                                "x": 0.05
                            },
                            "xaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "yaxis": {
                                "ticks": "",
                                "gridcolor": "#EBF0F8",
                                "linecolor": "#EBF0F8",
                                "automargin": true,
                                "zerolinecolor": "#EBF0F8",
                                "zerolinewidth": 2
                            },
                            "ternary": {
                                "aaxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "baxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "caxis": {
                                    "ticks": "",
                                    "gridcolor": "#DFE8F3",
                                    "linecolor": "#A2B1C6"
                                },
                                "bgcolor": "white"
                            },
                            "colorway": [
                                "#636efa",
                                "#EF553B",
                                "#00cc96",
                                "#ab63fa",
                                "#19d3f3",
                                "#e763fa",
                                "#fecb52",
                                "#ffa15a",
                                "#ff6692",
                                "#b6e880"
                            ],
                            "hovermode": "closest",
                            "colorscale": {
                                "diverging": [
                                    [
                                        0,
                                        "#8e0152"
                                    ],
                                    [
                                        0.1,
                                        "#c51b7d"
                                    ],
                                    [
                                        0.2,
                                        "#de77ae"
                                    ],
                                    [
                                        0.3,
                                        "#f1b6da"
                                    ],
                                    [
                                        0.4,
                                        "#fde0ef"
                                    ],
                                    [
                                        0.5,
                                        "#f7f7f7"
                                    ],
                                    [
                                        0.6,
                                        "#e6f5d0"
                                    ],
                                    [
                                        0.7,
                                        "#b8e186"
                                    ],
                                    [
                                        0.8,
                                        "#7fbc41"
                                    ],
                                    [
                                        0.9,
                                        "#4d9221"
                                    ],
                                    [
                                        1,
                                        "#276419"
                                    ]
                                ],
                                "sequential": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ],
                                "sequentialminus": [
                                    [
                                        0,
                                        "#0508b8"
                                    ],
                                    [
                                        0.0893854748603352,
                                        "#1910d8"
                                    ],
                                    [
                                        0.1787709497206704,
                                        "#3c19f0"
                                    ],
                                    [
                                        0.2681564245810056,
                                        "#6b1cfb"
                                    ],
                                    [
                                        0.3575418994413408,
                                        "#981cfd"
                                    ],
                                    [
                                        0.44692737430167595,
                                        "#bf1cfd"
                                    ],
                                    [
                                        0.5363128491620112,
                                        "#dd2bfd"
                                    ],
                                    [
                                        0.6256983240223464,
                                        "#f246fe"
                                    ],
                                    [
                                        0.7150837988826816,
                                        "#fc67fd"
                                    ],
                                    [
                                        0.8044692737430168,
                                        "#fe88fc"
                                    ],
                                    [
                                        0.8938547486033519,
                                        "#fea5fd"
                                    ],
                                    [
                                        0.9832402234636871,
                                        "#febefe"
                                    ],
                                    [
                                        1,
                                        "#fec3fe"
                                    ]
                                ]
                            },
                            "plot_bgcolor": "white",
                            "paper_bgcolor": "white",
                            "shapedefaults": {
                                "line": {
                                    "width": 0
                                },
                                "opacity": 0.4,
                                "fillcolor": "#506784"
                            },
                            "annotationdefaults": {
                                "arrowhead": 0,
                                "arrowcolor": "#506784",
                                "arrowwidth": 1
                            }
                        },
                        "themeRef": "PLOTLY_WHITE"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~satthudeptrai2011",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/54.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-0.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-05-15 04:50:44",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "satthudeptrai2011",
                "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-29T01:09:24.301299Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~jimmyg23/626.embed",
            "fid": "jimmyg23:626",
            "filename": "DAP",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/626/9_O1X6ZG6FXKTH05E2M6LZ3SNOC9CFQG.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/626/2_1VXDLBVTPZ2HX957F3PML7U19AVWZ5.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/626/8_AEXWQ1FZRCFUPMFGL4FF7I5XWUY9X7.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/jimmyg23/626/9_O1X6ZG6FXKTH05E2M6LZ3SNOC9CFQG.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/jimmyg23:626",
                "plots": "https://api.plotly.com/v2/plots/jimmyg23:626",
                "parent": "https://api.plotly.com/v2/folders/home?user=jimmyg23"
            },
            "owner": "jimmyg23",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~jimmyg23/626/",
            "world_readable": true,
            "date_modified": "2025-08-29T01:33:21.710Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~jimmyg23/626/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "color": "rgb(65, 144, 198)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "DAP09"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>2009</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:625:24c34b",
                        "ysrc": "jimmyg23:625:d6ab56",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(229, 87, 74)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "DAP10"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>2010</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:625:24c34b",
                        "ysrc": "jimmyg23:625:4bca2b",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "DAP11"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>2011</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:625:24c34b",
                        "ysrc": "jimmyg23:625:bf8e15",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "DAP12"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>2012</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:625:24c34b",
                        "ysrc": "jimmyg23:625:2aa928",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(215, 128, 26)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "DAP13"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>2013</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:625:24c34b",
                        "ysrc": "jimmyg23:625:355416",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(42, 212, 197)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "DAP14"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>2014</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:625:24c34b",
                        "ysrc": "jimmyg23:625:e9581f",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(212, 224, 44)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "DAP15"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>2015</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:625:24c34b",
                        "ysrc": "jimmyg23:625:e163ff",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(167, 19, 172)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "DA[16"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>2016</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:625:24c34b",
                        "ysrc": "jimmyg23:625:9b3048",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(134, 168, 246)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "DAP17"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>2017</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:625:24c34b",
                        "ysrc": "jimmyg23:625:e901a0",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(166, 243, 49)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "DAP18"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>2018</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:625:24c34b",
                        "ysrc": "jimmyg23:625:a36299",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(8, 37, 56)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "DAP19"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>2019</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:625:24c34b",
                        "ysrc": "jimmyg23:625:c28975",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(205, 83, 27)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "DAP20"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>2020</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:625:24c34b",
                        "ysrc": "jimmyg23:625:2048b1",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(96, 49, 16)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "DAP21"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>2021</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:625:24c34b",
                        "ysrc": "jimmyg23:625:1f1b26",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(195, 156, 80)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "DAP22"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>2022</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:625:24c34b",
                        "ysrc": "jimmyg23:625:5a3cbb",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(175, 36, 202)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "DAP23"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>2023</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:625:24c34b",
                        "ysrc": "jimmyg23:625:635f11",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(163, 162, 162)",
                            "width": 3
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "DAP24"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>2024</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:625:24c34b",
                        "ysrc": "jimmyg23:625:680f5b",
                        "stackgroup": null
                    },
                    {
                        "line": {
                            "color": "rgb(66, 68, 196)",
                            "width": 5
                        },
                        "meta": {
                            "columnNames": {
                                "x": "DATE",
                                "y": "DAP25"
                            }
                        },
                        "mode": "lines",
                        "name": "<b>2025</b>",
                        "type": "scatter",
                        "xsrc": "jimmyg23:625:24c34b",
                        "ysrc": "jimmyg23:625:81b4b3",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 16,
                        "color": "rgb(23, 50, 80)",
                        "family": "Droid Sans"
                    },
                    "title": {
                        "text": "DAP"
                    },
                    "width": 1700,
                    "xaxis": {
                        "type": "category",
                        "dtick": 1,
                        "range": [
                            1,
                            51
                        ],
                        "tick0": 0,
                        "ticks": "outside",
                        "title": {
                            "font": {
                                "family": "Droid Sans"
                            }
                        },
                        "nticks": 52,
                        "tickson": "labels",
                        "showline": true,
                        "tickfont": {
                            "size": 17,
                            "color": "rgb(1, 5, 10)",
                            "family": "Roboto"
                        },
                        "tickmode": "linear",
                        "autorange": false,
                        "gridcolor": "rgb(201, 226, 244)",
                        "gridwidth": 1,
                        "linecolor": "rgb(13, 34, 61)",
                        "linewidth": 2,
                        "tickangle": 45,
                        "showspikes": false,
                        "zerolinewidth": 2
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            71.07706786666665,
                            212.92470253333332
                        ],
                        "showline": true,
                        "autorange": true,
                        "gridwidth": 2,
                        "linewidth": 2,
                        "showspikes": false
                    },
                    "height": 750,
                    "legend": {
                        "x": 1.0254587271082645,
                        "y": 0.9535409035409036
                    },
                    "margin": {
                        "b": 68,
                        "l": 50,
                        "r": 65,
                        "t": 70,
                        "pad": 0
                    },
                    "autosize": true,
                    "plot_bgcolor": "rgb(255, 255, 255)",
                    "paper_bgcolor": "rgb(255, 255, 255)"
                }
            },
            "height": 750,
            "width": 1700,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~jimmyg23",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/81.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-2.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-03-19 23:02:49",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "jimmyg23",
                "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-29T00:56:50.066652Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~moyu1120/4.embed",
            "fid": "moyu1120:4",
            "filename": "Plot 4",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/moyu1120/4/9_B0YJAA8SDT7G2UK6ZPL1F6AIQP34Z8.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/moyu1120/4/2_WFR2A0YOT1AJ7X028J70FES1N96ENU.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/moyu1120/4/8_VV3O2SOCACLIO9OEVQ5J7XI682KCYT.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/moyu1120/4/9_B0YJAA8SDT7G2UK6ZPL1F6AIQP34Z8.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/moyu1120:4",
                "plots": "https://api.plotly.com/v2/plots/moyu1120:4",
                "parent": "https://api.plotly.com/v2/folders/home?user=moyu1120"
            },
            "owner": "moyu1120",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~moyu1120/4/",
            "world_readable": true,
            "date_modified": "2025-08-29T01:36:13.595Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~moyu1120/4/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Model",
                                "y": "F1"
                            }
                        },
                        "mode": "markers",
                        "name": "%{meta.columnNames.y}",
                        "type": "bar",
                        "xsrc": "moyu1120:6:d48b0a",
                        "ysrc": "moyu1120:6:111831",
                        "marker": {
                            "opacity": 0.76
                        },
                        "error_x": {
                            "visible": true,
                            "symmetric": true
                        },
                        "boxpoints": false,
                        "hoverinfo": "x+y",
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 15
                    },
                    "title": {
                        "text": "F1"
                    },
                    "width": 600,
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            2.3050912977828055
                        ],
                        "ticks": "",
                        "title": {
                            "text": "Model"
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.3,
                            0.6
                        ],
                        "ticks": "",
                        "title": {
                            "text": "F1"
                        },
                        "nticks": 0,
                        "autorange": false
                    },
                    "bargap": 0.61,
                    "legend": {
                        "x": 0.98,
                        "y": 1,
                        "font": {
                            "size": 15
                        }
                    },
                    "margin": {
                        "b": 80,
                        "l": 81,
                        "t": 106,
                        "pad": 0
                    },
                    "barmode": "group",
                    "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": "event",
                    "hoverlabel": {
                        "font": {
                            "size": 13
                        }
                    },
                    "bargroupgap": 0.08
                }
            },
            "height": null,
            "width": 600,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~moyu1120",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/91.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-10.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-08-27 18:51:00",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "moyu1120",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}