# Polar Area

### Chart Polar Area

{% embed url="<https://codesandbox.io/s/floral-surf-7cqrtd?file=/index.html>" %}

### Example of a static polar area chart

All I did was make the hexadecimal **colors** and the chart **list dynamic**

{% code lineNumbers="true" %}

```html
<!DOCTYPE html>
<html>
  <head>
    <script>
      window.onload = function () {
        var options = {
          colors: ["#4F46E5", "#10b981", "#ff9800", "#ff5724", "#0ea5e9"],
          series: [14, 23, 21, 17, 15, 10, 12, 17, 21],
          labels: [
            "iPhone 13 Pro",
            "MacBook Air",
            "Bose QuietComfort 45 Headphones",
            "Samsung QLED 8K TV",
            "GoPro Hero 10",
            "Xbox Series X",
            "Amazon Echo Show 10",
            "Fitbit Versa 3",
            "Canon EOS 90D Camera"
          ],
          chart: {
            type: "polarArea",
            height: 390
          },
          stroke: {
            colors: ["#fff"]
          },
          fill: {
            opacity: 0.8
          },
          responsive: [
            {
              breakpoint: 480,
              options: {
                chart: {
                  width: 200
                },
                legend: {
                  position: "bottom"
                }
              }
            }
          ]
        };

        var chart = new ApexCharts(document.querySelector("#chart"), options);
        chart.render();
      };
    </script>
  </head>
  <body>
    <div id="chart" style="width: 95%;"></div>
    <script src="https://cdn.jsdelivr.net/npm/apexcharts"></script>
  </body>
</html>
```

{% endcode %}

<figure><img src="/files/xeJbumXgKIWmKSKsNCC4" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/4LbMpSToX2bEXkL3OeYY" alt=""><figcaption></figcaption></figure>

#### Content to show per list item

**Series**

```
 series: [14, 23, 21]
 labels: ["iPhone 13 Pro", "MacBook Air", "Bose QuietComfort 45 Headphones"]
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://bb-docs.gitbook.io/bubweb-doc/help-guide/getting-started/charts/polar-area.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
