As per the document - https://www.mongodb.com/docs/charts/filter-embedded-charts/#pre-filter-data-on-charts-embedded-with-the-sdk, Pre-filtering allows the chart author to run a filter after the chart views and before the chart query execution and chart’s own filters.
We are using the latest library. @mongodb-js/charts-embed-dom": "~3.2.1
However, the property in not available for use
createChart({
baseUrl: '<your-base-url>',
chartId: '<your-chart-id>',
width: 500,
height: 500,
preFilter: { "address.country": "Australia" }
})
Is this something, which has made it to documentation, but not yet available in library?
Thanks in advance for any insights.