> For the complete documentation index, see [llms.txt](https://docs.wirebootstrap.com/pro-pack/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.wirebootstrap.com/pro-pack/dataset-filter-labels/data-binding.md).

# Data Binding

The Dataset Filter Labels component does not use a [datamap](https://docs.wirebootstrap.com/wirebootstrap/working-with-components/configuration/data#datamap) which means it does not expect any specific set of fields in data bound to the component.

To bind the component to data, set the configuration's `data` property with a valid [dataset](https://docs.wirebootstrap.com/wirebootstrap/datasets).

```javascript
const dataset = new wire.data.DataSet({
    Source: [source],
    Query: wire.data.select()
});
new wire.filterLabel().render("#label", {
    data: datset
});   
```
