# Advanced Pie Chart

## Advanced Pie Chart

{% embed url="<https://stackblitz.com/edit/swimlane-pie-chart-advanced?embed=1&file=app/app.component.ts>" %}

## Inputs

| Property             | Type               | Default Value | Description                                                                                                      |
| -------------------- | ------------------ | ------------- | ---------------------------------------------------------------------------------------------------------------- |
| view                 | number\[]          |               | the dimensions of the chart \[width, height]. If left undefined, the chart will fit to the parent container size |
| results              | object\[]          |               | the chart data                                                                                                   |
| scheme               | object             |               | the color scheme of the chart                                                                                    |
| customColors         | function or object |               | custom colors for the chart. Used to override a color for a specific value                                       |
| animations           | boolean            | true          | enable animations                                                                                                |
| gradient             | boolean            | false         | fill elements with a gradient instead of a solid color                                                           |
| activeEntries        | object\[]          | \[]           | elements to highlight                                                                                            |
| label                | string             | 'Total'       | the text to show under the total value                                                                           |
| tooltipDisabled      | boolean            | false         | show or hide the tooltip                                                                                         |
| tooltipTemplate      | TemplateRef        |               | a custom ng-template to be displayed inside the tooltip                                                          |
| valueFormatting      | function           |               | function that formats the numerical value in the chart legend                                                    |
| nameFormatting       | function           |               | function that formats name in the chart legend                                                                   |
| percentageFormatting | function           |               | function that formats the percentage number in the chart legend                                                  |

## Outputs

| Property   | Description                              |
| ---------- | ---------------------------------------- |
| select     | click event                              |
| activate   | element activation event (mouse enter)   |
| deactivate | element deactivation event (mouse leave) |

## Data Format

The data format is single series:

```
[
  {
    "name": "Germany",
    "value": 8940000
  },
  {
    "name": "USA",
    "value": 5000000
  }
]
```


---

# 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://swimlane.gitbook.io/ngx-charts/examples/pie-charts/advanced-pie-chart.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.
