This web part requires configuration:
- Select a data source
- Configure display options
)}
buttonLabel="Open Settings"
onConfigure={() => this.props.context.propertyPane.open()}
/>
```
--------------------------------
### Import AdaptiveCardDesignerHost Control
Source: https://github.com/pnp/sp-dev-fx-controls-react/blob/master/docs/documentation/docs/controls/AdaptiveCardDesignerHost.md
Import the AdaptiveCardDesignerHost control and related types from the @pnp/spfx-controls-react library. Ensure the dependency is installed.
```typescript
import { AdaptiveCardDesignerHost, HostContainer, BindingPreviewMode, Versions } from "@pnp/spfx-controls-react/lib/AdaptiveCardDesignerHost";
```
--------------------------------
### Implement basic ChartControl
Source: https://github.com/pnp/sp-dev-fx-controls-react/blob/master/docs/documentation/docs/controls/ChartControl.md
Basic usage example for rendering a bar chart using the ChartControl component.
```TypeScript