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

{
    "next": "https://api.plot.ly/v2/plots/?cursor=cD0yMDI1LTA3LTIwKzEyJTNBMjElM0E1Ny41OTE2NTQlMkIwMCUzQTAw&format=api",
    "previous": "https://api.plot.ly/v2/plots/?cursor=cj0xJnA9MjAyNS0wNy0yMCsxNCUzQTQ1JTNBMTkuNzk3MjQ3JTJCMDAlM0EwMA%3D%3D&format=api",
    "results": [
        {
            "creation_time": "2025-07-20T14:45:19.797247Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~majkot/37.embed",
            "fid": "majkot:37",
            "filename": "SAMO_PHE",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/majkot/37/9_T5MOAHQ5S7SL6URXU61D1C9633ZEHR.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/majkot/37/2_T4XQF5LO16JZ77524TELQKCC6ODAYL.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/majkot/37/8_ZK8RNUUQNCF83A2DH3UTMYYNUBBDTG.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/majkot/37/9_T5MOAHQ5S7SL6URXU61D1C9633ZEHR.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/majkot:37",
                "plots": "https://api.plotly.com/v2/plots/majkot:37",
                "parent": "https://api.plotly.com/v2/folders/home?user=majkot"
            },
            "owner": "majkot",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 2,
            "web_url": "https://chart-studio.plotly.com/~majkot/37/",
            "world_readable": true,
            "date_modified": "2025-07-21T16:39:39.388Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~majkot/37/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": false,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Čas [dan] - Skupina",
                                "y": "PHE",
                                "error_y": {
                                    "array": "AA"
                                }
                            }
                        },
                        "name": "PHE",
                        "type": "bar",
                        "xsrc": "majkot:36:e7d691,1bdd85*",
                        "ysrc": "majkot:36:904266",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "AA"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "majkot:36:0d6847",
                            "symmetric": true
                        },
                        "visible": true,
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 18
                    },
                    "title": {
                        "text": ""
                    },
                    "width": 1250,
                    "xaxis": {
                        "type": "multicategory",
                        "range": [
                            -0.5,
                            20.5
                        ],
                        "ticks": "",
                        "title": {
                            "text": ""
                        },
                        "autorange": true,
                        "showspikes": false,
                        "rangeslider": {
                            "range": [
                                -0.5,
                                20.5
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showdividers": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -0.2605129739277777,
                            1.8078703686277777
                        ],
                        "title": {
                            "text": "Vsebnost biogenih aminov [µg/g]"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "height": 500,
                    "legend": {
                        "x": 0.07330022762487719,
                        "y": 1.306294470590085,
                        "traceorder": "normal",
                        "orientation": "h"
                    },
                    "margin": {
                        "l": 80,
                        "r": 80,
                        "t": 80
                    },
                    "barmode": "stack",
                    "autosize": false,
                    "dragmode": "pan"
                }
            },
            "height": 500,
            "width": 1250,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~majkot",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-08 16:43:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "majkot",
                "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-07-20T14:39:13.199895Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Kent007/12.embed",
            "fid": "Kent007:12",
            "filename": "Plot 12",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/Kent007/12/9_NNECT9FJV9LA3BR1W6YOUIWHQTAEII.png",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Kent007/12/2_FIE0WUQQWD03E8S3CNZQCMUK9QKFM4.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Kent007/12/8_LEGYI5U9B5QWW3MK006GQQ3TAV1T1N.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/Kent007/12/9_NNECT9FJV9LA3BR1W6YOUIWHQTAEII.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Kent007:12",
                "plots": "https://api.plotly.com/v2/plots/Kent007:12",
                "parent": "https://api.plotly.com/v2/folders/home?user=Kent007"
            },
            "owner": "Kent007",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 5,
            "web_url": "https://chart-studio.plotly.com/~Kent007/12/",
            "world_readable": true,
            "date_modified": "2025-07-21T04:52:19.579Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Kent007/12/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "A",
                                "y": "B"
                            }
                        },
                        "mode": "lines",
                        "name": "B1",
                        "type": "scatter",
                        "xsrc": "Kent007:11:b0b685",
                        "ysrc": "Kent007:11:c76feb"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "C",
                                "y": "D"
                            }
                        },
                        "mode": "lines",
                        "name": "B2",
                        "type": "scatter",
                        "xsrc": "Kent007:11:dc5934",
                        "ysrc": "Kent007:11:00d2c8",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "E",
                                "y": "F"
                            }
                        },
                        "mode": "lines",
                        "name": "B3",
                        "type": "scatter",
                        "xsrc": "Kent007:11:58a3fb",
                        "ysrc": "Kent007:11:1ffe11",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "G",
                                "y": "H"
                            }
                        },
                        "mode": "lines",
                        "name": "B4",
                        "type": "scatter",
                        "xsrc": "Kent007:11:bb8546",
                        "ysrc": "Kent007:11:09f018",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "I",
                                "y": "J"
                            }
                        },
                        "mode": "lines",
                        "name": "B5",
                        "type": "scatter",
                        "xsrc": "Kent007:11:67791b",
                        "ysrc": "Kent007:11:ecec6f",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "K",
                                "y": "L"
                            }
                        },
                        "mode": "lines",
                        "name": "B6",
                        "type": "scatter",
                        "xsrc": "Kent007:11:cfbbb9",
                        "ysrc": "Kent007:11:078226",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "No.004 Subject  Cervical Lordosis"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            25.35938085841795,
                            104.39421402416416
                        ],
                        "title": {
                            "text": "Cranio-cervical Axis (mm)"
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            27.528776781717397,
                            104.26611427642682
                        ],
                        "title": {
                            "text": "Antero-posterior Axis (mm)"
                        },
                        "autorange": false
                    },
                    "legend": {
                        "x": 1.02,
                        "y": 1.1591591591591592
                    },
                    "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"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Kent007",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-19 15:49:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Kent007",
                "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-07-20T14:34:52.677263Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~majkot/35.embed",
            "fid": "majkot:35",
            "filename": "samo_V3_in_V5",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/majkot:35/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/majkot/35/2_98XDKXYV19VU8FWYDHGR83FSKRFZI9.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/majkot/35/8_B36IR7I7UMDZQLJWE5SPYXT5X33QS0.png",
                "list-thumb": "https://api.plotly.com/v2/files/majkot:35/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/majkot:35",
                "plots": "https://api.plotly.com/v2/plots/majkot:35",
                "parent": "https://api.plotly.com/v2/folders/home?user=majkot"
            },
            "owner": "majkot",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 1,
            "web_url": "https://chart-studio.plotly.com/~majkot/35/",
            "world_readable": true,
            "date_modified": "2025-07-20T14:34:52.686Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~majkot/35/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Čas [dan] - Skupina",
                                "y": "M",
                                "error_y": {
                                    "array": "AD"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "Normirane vrednosti",
                        "type": "bar",
                        "xsrc": "majkot:34:8bb03e,e5ed6b*",
                        "ysrc": "majkot:34:9a2a3d",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "AD"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "majkot:34:3f8d40",
                            "symmetric": true
                        },
                        "visible": true,
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 18
                    },
                    "title": {
                        "text": ""
                    },
                    "width": 1121,
                    "xaxis": {
                        "type": "multicategory",
                        "range": [
                            -0.5,
                            8.5
                        ],
                        "title": {
                            "font": {
                                "family": "Arial"
                            },
                            "text": "Ime Vzorca"
                        },
                        "autorange": true,
                        "tickangle": "auto",
                        "showspikes": false,
                        "showdividers": false,
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            118.36651369368421
                        ],
                        "title": {
                            "text": "Vsebnost biogenih aminov [µg/g]"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "height": 487,
                    "legend": {
                        "x": 0.25390218522372526,
                        "y": -0.4037095515694303,
                        "traceorder": "normal",
                        "orientation": "h"
                    },
                    "margin": {
                        "b": 85,
                        "t": 100
                    },
                    "barmode": "group",
                    "autosize": true,
                    "dragmode": "pan",
                    "uniformtext": {
                        "mode": false
                    }
                }
            },
            "height": 487,
            "width": 1121,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~majkot",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-08 16:43:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "majkot",
                "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-07-20T14:30:36.030272Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~majkot/33.embed",
            "fid": "majkot:33",
            "filename": "Samo_V2_in_V4",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/majkot:33/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/majkot/33/2_P76K6LLK2OLB8ZFQ4PHOI18JIU1YUT.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/majkot/33/8_8QTGAWIYVGZ9IL06JOX88R9ZSTJAES.png",
                "list-thumb": "https://api.plotly.com/v2/files/majkot:33/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/majkot:33",
                "plots": "https://api.plotly.com/v2/plots/majkot:33",
                "parent": "https://api.plotly.com/v2/folders/home?user=majkot"
            },
            "owner": "majkot",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~majkot/33/",
            "world_readable": true,
            "date_modified": "2025-07-20T14:30:36.039Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~majkot/33/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Čas [dan] - Skupina",
                                "y": "M",
                                "error_y": {
                                    "array": "AD"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "Normirane vrednosti",
                        "type": "bar",
                        "xsrc": "majkot:32:c94234,43156d*",
                        "ysrc": "majkot:32:bc9cee",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "AD"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "majkot:32:105e91",
                            "symmetric": true
                        },
                        "visible": true,
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 18
                    },
                    "title": {
                        "text": ""
                    },
                    "width": 1121,
                    "xaxis": {
                        "type": "multicategory",
                        "range": [
                            -0.5,
                            8.5
                        ],
                        "title": {
                            "font": {
                                "family": "Arial"
                            },
                            "text": "Ime Vzorca"
                        },
                        "autorange": true,
                        "tickangle": "auto",
                        "showspikes": false,
                        "showdividers": false,
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0,
                            77.40817689894736
                        ],
                        "title": {
                            "text": "Vsebnost biogenih aminov [µg/g]"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "height": 487,
                    "legend": {
                        "x": 0.25390218522372526,
                        "y": -0.4037095515694303,
                        "traceorder": "normal",
                        "orientation": "h"
                    },
                    "margin": {
                        "b": 85,
                        "t": 100
                    },
                    "barmode": "group",
                    "autosize": true,
                    "dragmode": "pan",
                    "uniformtext": {
                        "mode": false
                    }
                }
            },
            "height": 487,
            "width": 1121,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~majkot",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-08 16:43:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "majkot",
                "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-07-20T14:27:34.283056Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~majkot/31.embed",
            "fid": "majkot:31",
            "filename": "Normirani_biogeni_amini",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/majkot/31/9_J0LIJI2SPWRZBEIGX1XII5AH8JBNSP.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/majkot:31/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/majkot/31/8_NEGGYZWCLXN83UQKPXNVGP84JXYF7U.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/majkot/31/9_J0LIJI2SPWRZBEIGX1XII5AH8JBNSP.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/majkot:31",
                "plots": "https://api.plotly.com/v2/plots/majkot:31",
                "parent": "https://api.plotly.com/v2/folders/home?user=majkot"
            },
            "owner": "majkot",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~majkot/31/",
            "world_readable": true,
            "date_modified": "2025-07-20T14:27:34.293Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~majkot/31/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Čas [dan] - Skupina",
                                "y": "M",
                                "error_y": {
                                    "array": "AD"
                                }
                            }
                        },
                        "mode": "markers",
                        "name": "Normirane vrednosti",
                        "type": "bar",
                        "xsrc": "majkot:9:9adc12,faf31e*",
                        "ysrc": "majkot:9:4c033e",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "AD"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "majkot:9:e8ae20",
                            "symmetric": true
                        },
                        "visible": true,
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 18
                    },
                    "title": {
                        "text": ""
                    },
                    "width": 1121,
                    "xaxis": {
                        "type": "multicategory",
                        "range": [
                            -0.1778834661946353,
                            20.45904913293573
                        ],
                        "title": {
                            "font": {
                                "family": "Arial"
                            },
                            "text": "Ime Vzorca"
                        },
                        "autorange": false,
                        "tickangle": "auto",
                        "showspikes": false,
                        "showdividers": false,
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -9.962969979221675,
                            159.9610179997257
                        ],
                        "title": {
                            "text": "Vsebnost biogenih aminov [µg/g]"
                        },
                        "autorange": false,
                        "showspikes": false
                    },
                    "height": 487,
                    "legend": {
                        "x": 0.25390218522372526,
                        "y": -0.4037095515694303,
                        "traceorder": "normal",
                        "orientation": "h"
                    },
                    "margin": {
                        "b": 85,
                        "t": 100
                    },
                    "barmode": "group",
                    "autosize": true,
                    "dragmode": "pan",
                    "uniformtext": {
                        "mode": false
                    }
                }
            },
            "height": 487,
            "width": 1121,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~majkot",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-08 16:43:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "majkot",
                "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-07-20T14:18:47.172265Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~majkot/30.embed",
            "fid": "majkot:30",
            "filename": "K1_vse_BA",
            "filetype": "plot",
            "img_url": "https://storage.googleapis.com/plotly-prod-images/majkot/30/9_Y6EDLJOBLY5DD03KNB16XWMZD3P7NS.png",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/majkot:30/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/majkot/30/8_QU8I50ACLRCS738CNEQXW7U6V07EV7.png",
                "list-thumb": "https://storage.googleapis.com/plotly-prod-images/majkot/30/9_Y6EDLJOBLY5DD03KNB16XWMZD3P7NS.png"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/majkot:30",
                "plots": "https://api.plotly.com/v2/plots/majkot:30",
                "parent": "https://api.plotly.com/v2/folders/home?user=majkot"
            },
            "owner": "majkot",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~majkot/30/",
            "world_readable": true,
            "date_modified": "2025-07-20T14:21:27.565Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~majkot/30/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "uid": "0915a0",
                        "meta": {
                            "columnNames": {
                                "x": "Čas [dan] - Skupina",
                                "y": "GABA",
                                "error_y": {
                                    "array": "T"
                                }
                            }
                        },
                        "name": "GABA",
                        "type": "bar",
                        "xsrc": "majkot:29:6297a4,031e26*",
                        "ysrc": "majkot:29:395adb",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "T"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "majkot:29:7b1caa",
                            "symmetric": true
                        },
                        "visible": true,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Čas [dan] - Skupina",
                                "y": "AGM",
                                "error_y": {
                                    "array": "U"
                                }
                            }
                        },
                        "name": "AGM",
                        "type": "bar",
                        "xsrc": "majkot:29:6297a4,031e26*",
                        "ysrc": "majkot:29:db7559",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "U"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "majkot:29:1038b2",
                            "symmetric": true
                        },
                        "visible": true,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Čas [dan] - Skupina",
                                "y": "SPD",
                                "error_y": {
                                    "array": "V"
                                }
                            }
                        },
                        "name": "SPD",
                        "type": "bar",
                        "xsrc": "majkot:29:6297a4,031e26*",
                        "ysrc": "majkot:29:b2faec",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "V"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "majkot:29:af2e3e",
                            "symmetric": true
                        },
                        "visible": true,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Čas [dan] - Skupina",
                                "y": "SPR",
                                "error_y": {
                                    "array": "W"
                                }
                            }
                        },
                        "name": "SPR ",
                        "type": "bar",
                        "xsrc": "majkot:29:6297a4,031e26*",
                        "ysrc": "majkot:29:f4970f",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "W"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "majkot:29:ddcaa3",
                            "symmetric": true
                        },
                        "visible": true,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Čas [dan] - Skupina",
                                "y": "PUT",
                                "error_y": {
                                    "array": "X"
                                }
                            }
                        },
                        "name": "PUT",
                        "type": "bar",
                        "xsrc": "majkot:29:6297a4,031e26*",
                        "ysrc": "majkot:29:10f58c",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "X"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "majkot:29:cb5257",
                            "symmetric": true
                        },
                        "visible": true,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Čas [dan] - Skupina",
                                "y": "CAD",
                                "error_y": {
                                    "array": "Y"
                                }
                            }
                        },
                        "name": "CAD",
                        "type": "bar",
                        "xsrc": "majkot:29:6297a4,031e26*",
                        "ysrc": "majkot:29:177b1e",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "Y"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "majkot:29:0ea60d",
                            "symmetric": true
                        },
                        "visible": true,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Čas [dan] - Skupina",
                                "y": "TRY",
                                "error_y": {
                                    "array": "Z"
                                }
                            }
                        },
                        "name": "TRY",
                        "type": "bar",
                        "xsrc": "majkot:29:6297a4,031e26*",
                        "ysrc": "majkot:29:51194e",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "Z"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "majkot:29:8e7130",
                            "symmetric": true
                        },
                        "visible": true,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Čas [dan] - Skupina",
                                "y": "PHE",
                                "error_y": {
                                    "array": "AA"
                                }
                            }
                        },
                        "name": "PHE",
                        "type": "bar",
                        "xsrc": "majkot:29:6297a4,031e26*",
                        "ysrc": "majkot:29:a7b9a3",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "AA"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "majkot:29:c1905a",
                            "symmetric": true
                        },
                        "visible": true,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Čas [dan] - Skupina",
                                "y": "HA",
                                "error_y": {
                                    "array": "AB"
                                }
                            }
                        },
                        "name": "HA",
                        "type": "bar",
                        "xsrc": "majkot:29:6297a4,031e26*",
                        "ysrc": "majkot:29:e7ed30",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "AB"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "majkot:29:cb710b",
                            "symmetric": true
                        },
                        "visible": true,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Čas [dan] - Skupina",
                                "y": "TYR",
                                "error_y": {
                                    "array": "AC"
                                }
                            }
                        },
                        "name": "TYR",
                        "type": "bar",
                        "xsrc": "majkot:29:6297a4,031e26*",
                        "ysrc": "majkot:29:2ba4fd",
                        "error_y": {
                            "meta": {
                                "columnNames": {
                                    "array": "AC"
                                }
                            },
                            "type": "data",
                            "visible": true,
                            "arraysrc": "majkot:29:f4bda7",
                            "symmetric": true
                        },
                        "visible": true,
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 18
                    },
                    "title": {
                        "text": ""
                    },
                    "width": 1121,
                    "xaxis": {
                        "type": "multicategory",
                        "range": [
                            -0.20543883547997588,
                            4.708116545265349
                        ],
                        "ticks": "",
                        "title": {
                            "text": ""
                        },
                        "autorange": false,
                        "showspikes": false,
                        "rangeslider": {
                            "range": [
                                -0.5,
                                20.5
                            ],
                            "yaxis": {},
                            "visible": false,
                            "autorange": true
                        },
                        "showdividers": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            -2.8081156107055554,
                            50.87528173740556
                        ],
                        "title": {
                            "text": "Vsebnost biogenih aminov [µg/g]"
                        },
                        "autorange": true,
                        "showspikes": false
                    },
                    "height": 487,
                    "legend": {
                        "x": 0.10718002081165452,
                        "y": -0.19684641470706363,
                        "traceorder": "normal",
                        "orientation": "h"
                    },
                    "barmode": "group",
                    "autosize": true
                }
            },
            "height": 487,
            "width": 1121,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~majkot",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-08 16:43:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "majkot",
                "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-07-20T13:59:47.432359Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~majkot/28.embed",
            "fid": "majkot:28",
            "filename": "Dodatek_starter_kulture_prazno",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/majkot:28/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/majkot:28/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/majkot/28/8_MQ1NIKSH414Q0MCFQH1WTYSG0TI3A0.png",
                "list-thumb": "https://api.plotly.com/v2/files/majkot:28/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/majkot:28",
                "plots": "https://api.plotly.com/v2/plots/majkot:28",
                "parent": "https://api.plotly.com/v2/folders/home?user=majkot"
            },
            "owner": "majkot",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~majkot/28/",
            "world_readable": true,
            "date_modified": "2025-07-20T14:04:35.362Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~majkot/28/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "dan",
                                "y": "SUM BA"
                            }
                        },
                        "mode": "lines",
                        "name": "TRADI",
                        "type": "scatter",
                        "xsrc": "majkot:20:a204b4",
                        "ysrc": "majkot:20:2159cd",
                        "visible": true,
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "dan",
                                "y": "SUM BA"
                            }
                        },
                        "mode": "lines",
                        "name": "SM-194",
                        "type": "scatter",
                        "xsrc": "majkot:22:09cee3",
                        "ysrc": "majkot:22:1fce5e",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "dan",
                                "y": "SUM BA"
                            }
                        },
                        "mode": "lines",
                        "name": "SM-194 + B-LC-20",
                        "type": "scatter",
                        "xsrc": "majkot:21:247bcd",
                        "ysrc": "majkot:21:3d541e",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "dan",
                                "y": "SUM BA"
                            }
                        },
                        "mode": "lines",
                        "name": "SM-194 + B-LC-007",
                        "type": "scatter",
                        "xsrc": "majkot:23:a7db52",
                        "ysrc": "majkot:23:fe3be6",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 18
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            1,
                            30
                        ],
                        "title": {
                            "text": "Čas fermentacije [dan]"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.7990177266666665,
                            34.43992479333334
                        ],
                        "title": {
                            "text": "Vsebnost biogenih aminov [µg/mL]"
                        },
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.1389558232931727,
                        "y": -0.18530823740990993,
                        "title": {
                            "font": {
                                "size": 18
                            },
                            "text": "<b>Dodatek starter kulture &nbsp;&nbsp;</b>"
                        },
                        "orientation": "h"
                    },
                    "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/~majkot",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-08 16:43:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "majkot",
                "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-07-20T13:57:02.791411Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~Kent007/10.embed",
            "fid": "Kent007:10",
            "filename": "Plot 10",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/Kent007:10/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/Kent007/10/2_N4FVVC594WLPFBPFPZS07OZM8Z4HX2.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/Kent007/10/8_6502TC24QH3U7F7QDMIYA0IR8NNHH7.png",
                "list-thumb": "https://api.plotly.com/v2/files/Kent007:10/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/Kent007:10",
                "plots": "https://api.plotly.com/v2/plots/Kent007:10",
                "parent": "https://api.plotly.com/v2/folders/home?user=Kent007"
            },
            "owner": "Kent007",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~Kent007/10/",
            "world_readable": true,
            "date_modified": "2025-07-20T13:57:02.803Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~Kent007/10/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "B",
                                "y": "A"
                            }
                        },
                        "mode": "lines",
                        "name": "B1",
                        "type": "scatter",
                        "xsrc": "Kent007:9:f1a42b",
                        "ysrc": "Kent007:9:b8f05b"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "D",
                                "y": "C"
                            }
                        },
                        "mode": "lines",
                        "name": "B2",
                        "type": "scatter",
                        "xsrc": "Kent007:9:91b58d",
                        "ysrc": "Kent007:9:4abe62",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "F",
                                "y": "E"
                            }
                        },
                        "mode": "lines",
                        "name": "B3",
                        "type": "scatter",
                        "xsrc": "Kent007:9:7476ca",
                        "ysrc": "Kent007:9:907068",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "H",
                                "y": "G"
                            }
                        },
                        "mode": "lines",
                        "name": "B4",
                        "type": "scatter",
                        "xsrc": "Kent007:9:3fc20d",
                        "ysrc": "Kent007:9:5faaab",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "J",
                                "y": "I"
                            }
                        },
                        "mode": "lines",
                        "name": "B5",
                        "type": "scatter",
                        "xsrc": "Kent007:9:1b148d",
                        "ysrc": "Kent007:9:2a7eae",
                        "stackgroup": null
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "L",
                                "y": "K"
                            }
                        },
                        "mode": "lines",
                        "name": "B6",
                        "type": "scatter",
                        "xsrc": "Kent007:9:cffb63",
                        "ysrc": "Kent007:9:1b3eb2",
                        "stackgroup": null
                    }
                ],
                "frames": [],
                "layout": {
                    "title": {
                        "text": "No.001 Subject  Cervical Lordosis"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            16.273922224040078,
                            137.60181313908333
                        ],
                        "title": {
                            "text": "Cranio-cervical Axis (mm)"
                        },
                        "autorange": false
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            10.811111111111114,
                            116.58888888888889
                        ],
                        "title": {
                            "text": "Antero-posterior Axis (mm)"
                        },
                        "autorange": false
                    },
                    "legend": {
                        "x": 1.02,
                        "y": 1.1591591591591592
                    },
                    "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"
                    }
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~Kent007",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/14.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-19 15:49:16",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "Kent007",
                "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-07-20T13:31:59.199575Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~majkot/27.embed",
            "fid": "majkot:27",
            "filename": "Graf prehranskih vrednosti",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/majkot:27/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://api.plotly.com/v2/files/majkot:27/image?image_name=default",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/majkot/27/8_42QQHQGJF2QHYC443K85I13CPN71OJ.png",
                "list-thumb": "https://api.plotly.com/v2/files/majkot:27/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/majkot:27",
                "plots": "https://api.plotly.com/v2/plots/majkot:27",
                "parent": "https://api.plotly.com/v2/folders/home?user=majkot"
            },
            "owner": "majkot",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 0,
            "web_url": "https://chart-studio.plotly.com/~majkot/27/",
            "world_readable": true,
            "date_modified": "2025-07-21T17:27:42.071Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~majkot/27/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": false,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Oznaka",
                                "y": "% vode"
                            }
                        },
                        "mode": "markers",
                        "name": "Voda",
                        "type": "bar",
                        "xsrc": "majkot:26:08a339",
                        "ysrc": "majkot:26:38d93d",
                        "marker": {
                            "color": "rgb(69, 123, 157)"
                        },
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Oznaka",
                                "y": "% beljakovin"
                            }
                        },
                        "name": "Beljakovine",
                        "type": "bar",
                        "xsrc": "majkot:26:08a339",
                        "ysrc": "majkot:26:bea13b",
                        "marker": {
                            "color": "rgb(244, 162, 97)"
                        },
                        "visible": true,
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Oznaka",
                                "y": "% maščobe"
                            }
                        },
                        "name": "Maščobe",
                        "type": "bar",
                        "xsrc": "majkot:26:08a339",
                        "ysrc": "majkot:26:61ec1a",
                        "marker": {
                            "color": "rgb(38, 70, 83)"
                        },
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Oznaka",
                                "y": "% pepela"
                            }
                        },
                        "name": "Skupni minerali",
                        "type": "bar",
                        "xsrc": "majkot:26:08a339",
                        "ysrc": "majkot:26:818a0c",
                        "marker": {
                            "color": "rgb(231, 111, 81)"
                        },
                        "orientation": "v"
                    },
                    {
                        "meta": {
                            "columnNames": {
                                "x": "Oznaka",
                                "y": "% OH"
                            }
                        },
                        "name": "Skupni ogljikovi hidrati",
                        "type": "bar",
                        "xsrc": "majkot:26:08a339",
                        "ysrc": "majkot:26:003eb9",
                        "marker": {
                            "color": "rgb(42, 157, 143)"
                        },
                        "orientation": "v"
                    }
                ],
                "frames": [],
                "layout": {
                    "font": {
                        "size": 18
                    },
                    "xaxis": {
                        "type": "category",
                        "range": [
                            -0.5,
                            2.5
                        ],
                        "title": {
                            "text": "Ime vzorca"
                        },
                        "autorange": true
                    },
                    "yaxis": {
                        "range": [
                            0,
                            105.27368421052631
                        ],
                        "title": {
                            "text": "Vsebnost v vzorcu [%]"
                        },
                        "autorange": true
                    },
                    "legend": {
                        "x": 0.1646586345381526,
                        "y": -0.18731531528853834,
                        "font": {
                            "family": "Arial"
                        },
                        "orientation": "h"
                    },
                    "barmode": "stack",
                    "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/~majkot",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/99.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-1.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2025-07-08 16:43:07",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "majkot",
                "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-07-20T12:21:57.591654Z",
            "comments": {
                "results": [],
                "count": 0
            },
            "parented": true,
            "embed_url": "https://chart-studio.plotly.com/~bpiskernik/14.embed",
            "fid": "bpiskernik:14",
            "filename": "free_bet_rtp",
            "filetype": "plot",
            "img_url": "https://api.plotly.com/v2/files/bpiskernik:14/image?image_name=list-thumb",
            "image_urls": {
                "default": "https://storage.googleapis.com/plotly-prod-images/bpiskernik/14/2_CNDHONGE2DZ1P7GZ56YAIXKL8HLSRB.png",
                "block-thumb": "https://storage.googleapis.com/plotly-prod-images/bpiskernik/14/8_77NPVU7YRLT8QTXUXLYBP51FOX1T78.png",
                "list-thumb": "https://api.plotly.com/v2/files/bpiskernik:14/image?image_name=list-thumb"
            },
            "api_urls": {
                "files": "https://api.plotly.com/v2/files/bpiskernik:14",
                "plots": "https://api.plotly.com/v2/plots/bpiskernik:14",
                "parent": "https://api.plotly.com/v2/folders/home?user=bpiskernik"
            },
            "owner": "bpiskernik",
            "parent": -1,
            "preview": "",
            "referencers": [],
            "references": [],
            "title": "",
            "views": 17,
            "web_url": "https://chart-studio.plotly.com/~bpiskernik/14/",
            "world_readable": true,
            "date_modified": "2025-07-20T12:21:57.601Z",
            "stars": {
                "results": [],
                "count": 0
            },
            "collaborators": {
                "results": [],
                "count": 0
            },
            "subfolder_count": null,
            "refresh_interval": null,
            "organize_view_url": "https://chart-studio.plotly.com/~bpiskernik/14/",
            "current_user_permission": "read",
            "is_theme": null,
            "is_template": null,
            "autosize": true,
            "caption": "",
            "figure": {
                "data": [
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(248,118,109,1)",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "name": "WH",
                        "type": "scatter",
                        "xsrc": "bpiskernik:13:95703b",
                        "ysrc": "bpiskernik:13:7ecb42",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "bpiskernik:13:4d9aed",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "WH"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(124,174,0,1)",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "name": "B365",
                        "type": "scatter",
                        "xsrc": "bpiskernik:13:6437b9",
                        "ysrc": "bpiskernik:13:4c70c5",
                        "frame": null,
                        "xaxis": "x2",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "bpiskernik:13:2563fa",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "B365"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(0,191,196,1)",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "name": "IW",
                        "type": "scatter",
                        "xsrc": "bpiskernik:13:eaa508",
                        "ysrc": "bpiskernik:13:44307e",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "hoveron": "points",
                        "textsrc": "bpiskernik:13:a50e4a",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "IW"
                    },
                    {
                        "line": {
                            "dash": "solid",
                            "color": "rgba(199,124,255,1)",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "name": "VC",
                        "type": "scatter",
                        "xsrc": "bpiskernik:13:1b99ff",
                        "ysrc": "bpiskernik:13:b93a9c",
                        "frame": null,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoveron": "points",
                        "textsrc": "bpiskernik:13:7ebad0",
                        "hoverinfo": "text",
                        "showlegend": true,
                        "legendgroup": "VC"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "transparent",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "name": "WH",
                        "type": "scatter",
                        "xsrc": "bpiskernik:13:b08cba",
                        "ysrc": "bpiskernik:13:21fd9a",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "bpiskernik:13:b6cb64",
                        "fillcolor": "rgba(153,153,153,0.4)",
                        "hoverinfo": "x+y",
                        "showlegend": false,
                        "legendgroup": "WH"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "transparent",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "name": "B365",
                        "type": "scatter",
                        "xsrc": "bpiskernik:13:0017c1",
                        "ysrc": "bpiskernik:13:4ac643",
                        "frame": null,
                        "xaxis": "x2",
                        "yaxis": "y",
                        "hoveron": "points",
                        "textsrc": "bpiskernik:13:052066",
                        "fillcolor": "rgba(153,153,153,0.4)",
                        "hoverinfo": "x+y",
                        "showlegend": false,
                        "legendgroup": "B365"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "transparent",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "name": "IW",
                        "type": "scatter",
                        "xsrc": "bpiskernik:13:d4f40b",
                        "ysrc": "bpiskernik:13:cded9c",
                        "frame": null,
                        "xaxis": "x",
                        "yaxis": "y2",
                        "hoveron": "points",
                        "textsrc": "bpiskernik:13:ec2ef8",
                        "fillcolor": "rgba(153,153,153,0.4)",
                        "hoverinfo": "x+y",
                        "showlegend": false,
                        "legendgroup": "IW"
                    },
                    {
                        "fill": "toself",
                        "line": {
                            "dash": "solid",
                            "color": "transparent",
                            "width": 3.7795275590551185
                        },
                        "mode": "lines",
                        "name": "VC",
                        "type": "scatter",
                        "xsrc": "bpiskernik:13:14498d",
                        "ysrc": "bpiskernik:13:ea13a9",
                        "frame": null,
                        "xaxis": "x2",
                        "yaxis": "y2",
                        "hoveron": "points",
                        "textsrc": "bpiskernik:13:7efa4c",
                        "fillcolor": "rgba(153,153,153,0.4)",
                        "hoverinfo": "x+y",
                        "showlegend": false,
                        "legendgroup": "VC"
                    }
                ],
                "layout": {
                    "font": {
                        "size": 14.611872146118724,
                        "color": "rgba(0,0,0,1)",
                        "family": ""
                    },
                    "title": {
                        "x": 0,
                        "font": {
                            "size": 17.534246575342465,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "text": "Mean Return to Player on Free Bets per Odds and Provider",
                        "xref": "paper"
                    },
                    "xaxis": {
                        "type": "linear",
                        "range": [
                            0.04999999999999993,
                            20.95
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "y2",
                        "domain": [
                            0,
                            0.48912807131985214
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "5",
                            "10",
                            "15",
                            "20"
                        ],
                        "tickvals": [
                            5,
                            10,
                            15,
                            20
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "5",
                            "10",
                            "15",
                            "20"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis": {
                        "type": "linear",
                        "range": [
                            0.12655288264336623,
                            0.7926457901477113
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "x",
                        "domain": [
                            0.5395738203957382,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0.2",
                            "0.4",
                            "0.6"
                        ],
                        "tickvals": [
                            0.2,
                            0.4,
                            0.6000000000000001
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "automargin": true,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0.2",
                            "0.4",
                            "0.6"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "legend": {
                        "font": {
                            "size": 11.68949771689498,
                            "color": "rgba(0,0,0,1)",
                            "family": ""
                        },
                        "bgcolor": null,
                        "bordercolor": null,
                        "borderwidth": 0
                    },
                    "margin": {
                        "b": 40.1826484018265,
                        "l": 43.105022831050235,
                        "r": 7.305936073059362,
                        "t": 55.45205479452055
                    },
                    "shapes": [
                        {
                            "x0": 0,
                            "x1": 0.48912807131985214,
                            "y0": 0.5395738203957382,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        },
                        {
                            "x0": 0,
                            "x1": 0.48912807131985214,
                            "y0": 0,
                            "y1": 23.37899543378996,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "yanchor": 1,
                            "fillcolor": null,
                            "ysizemode": "pixel"
                        },
                        {
                            "x0": 0.5108719286801479,
                            "x1": 1,
                            "y0": 0.5395738203957382,
                            "y1": 1,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        },
                        {
                            "x0": 0.5108719286801479,
                            "x1": 1,
                            "y0": 0,
                            "y1": 23.37899543378996,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "yanchor": 1,
                            "fillcolor": null,
                            "ysizemode": "pixel"
                        },
                        {
                            "x0": 0,
                            "x1": 0.48912807131985214,
                            "y0": 0,
                            "y1": 0.4604261796042618,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        },
                        {
                            "x0": 0,
                            "x1": 0.48912807131985214,
                            "y0": 0,
                            "y1": 23.37899543378996,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "yanchor": 0.4604261796042618,
                            "fillcolor": null,
                            "ysizemode": "pixel"
                        },
                        {
                            "x0": 0.5108719286801479,
                            "x1": 1,
                            "y0": 0,
                            "y1": 0.4604261796042618,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "fillcolor": null
                        },
                        {
                            "x0": 0.5108719286801479,
                            "x1": 1,
                            "y0": 0,
                            "y1": 23.37899543378996,
                            "line": {
                                "color": null,
                                "width": 0,
                                "linetype": []
                            },
                            "type": "rect",
                            "xref": "paper",
                            "yref": "paper",
                            "yanchor": 0.4604261796042618,
                            "fillcolor": null,
                            "ysizemode": "pixel"
                        }
                    ],
                    "xaxis2": {
                        "type": "linear",
                        "range": [
                            0.04999999999999993,
                            20.95
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "y2",
                        "domain": [
                            0.5108719286801479,
                            1
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "5",
                            "10",
                            "15",
                            "20"
                        ],
                        "tickvals": [
                            5,
                            10,
                            15,
                            20
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "5",
                            "10",
                            "15",
                            "20"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "yaxis2": {
                        "type": "linear",
                        "range": [
                            0.12655288264336623,
                            0.7926457901477113
                        ],
                        "ticks": "",
                        "title": "",
                        "anchor": "x",
                        "domain": [
                            0,
                            0.4604261796042618
                        ],
                        "nticks": null,
                        "ticklen": 3.652968036529681,
                        "showgrid": true,
                        "showline": false,
                        "tickfont": {
                            "size": 11.68949771689498,
                            "color": "rgba(77,77,77,1)",
                            "family": ""
                        },
                        "tickmode": "array",
                        "ticktext": [
                            "0.2",
                            "0.4",
                            "0.6"
                        ],
                        "tickvals": [
                            0.2,
                            0.4,
                            0.6000000000000001
                        ],
                        "zeroline": false,
                        "autorange": false,
                        "gridcolor": "rgba(235,235,235,1)",
                        "gridwidth": 0.66417600664176,
                        "linecolor": null,
                        "linewidth": 0,
                        "tickangle": 0,
                        "tickcolor": null,
                        "tickwidth": 0,
                        "hoverformat": ".2f",
                        "categoryarray": [
                            "0.2",
                            "0.4",
                            "0.6"
                        ],
                        "categoryorder": "array",
                        "showticklabels": true
                    },
                    "barmode": "relative",
                    "hovermode": "closest",
                    "showlegend": false,
                    "annotations": [
                        {
                            "x": 0.5,
                            "y": 0,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "Odds",
                            "xref": "paper",
                            "yref": "paper",
                            "yshift": -21.91780821917808,
                            "xanchor": "center",
                            "yanchor": "top",
                            "showarrow": false,
                            "textangle": 0,
                            "annotationType": "axis"
                        },
                        {
                            "x": 0,
                            "y": 0.5,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 14.611872146118724,
                                "color": "rgba(0,0,0,1)",
                                "family": ""
                            },
                            "text": "Mean RTP",
                            "xref": "paper",
                            "yref": "paper",
                            "xshift": -27.762557077625573,
                            "xanchor": "right",
                            "yanchor": "center",
                            "showarrow": false,
                            "textangle": -90,
                            "annotationType": "axis"
                        },
                        {
                            "x": 0.24456403565992607,
                            "y": 1,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 11.68949771689498,
                                "color": "rgba(26,26,26,1)",
                                "family": ""
                            },
                            "text": "WH",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": 0.7554359643400739,
                            "y": 1,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 11.68949771689498,
                                "color": "rgba(26,26,26,1)",
                                "family": ""
                            },
                            "text": "B365",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": 0.24456403565992607,
                            "y": 0.4604261796042618,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 11.68949771689498,
                                "color": "rgba(26,26,26,1)",
                                "family": ""
                            },
                            "text": "IW",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 0
                        },
                        {
                            "x": 0.7554359643400739,
                            "y": 0.4604261796042618,
                            "ax": 0,
                            "ay": 0,
                            "font": {
                                "size": 11.68949771689498,
                                "color": "rgba(26,26,26,1)",
                                "family": ""
                            },
                            "text": "VC",
                            "xref": "paper",
                            "yref": "paper",
                            "xanchor": "center",
                            "yanchor": "bottom",
                            "showarrow": false,
                            "textangle": 0
                        }
                    ]
                }
            },
            "height": null,
            "width": null,
            "user": {
                "profile_url": "https://chart-studio.plotly.com/~bpiskernik",
                "avatar_url": "https://storage.googleapis.com/plotly-prod-profiles/84.jpg",
                "background_url": "https://storage.googleapis.com/plotly-prod-profiles/bg-9.jpg",
                "bio": "",
                "nickname": "",
                "website": "",
                "stream_tokens": null,
                "feature_set_id": null,
                "csrf_token": null,
                "date_joined": "2023-06-12 13:17:24",
                "mapbox_access_tokens": null,
                "has_password": null,
                "username": "bpiskernik",
                "email": null,
                "is_active": null,
                "readonly": null,
                "is_dash_creator": null,
                "dash_created_count": null,
                "is_chart_creator": null,
                "charts_created_count": null
            }
        }
    ]
}