Vega in Opensearch Dashboards Configurations

I’m converting dashboards I built in Kibana over to OpenSearch Dashboards v2.3. In Kibana V7.10 and later, there is support for configuration of the Vega-defined signal bindings:

{
config: {
kibana: {
// Placement of the Vega-defined signal bindings.
// Can be left, right, top, or bottom (default).
controlsLocation: top
// Can be vertical or horizontal (default).
controlsDirection: vertical
// If true, hides most of Vega and Vega-Lite warnings
hideWarnings: true
// Vega renderer to use: svg or canvas (default)
renderer: canvas
// Defaults to ‘false’, restores Vega signal values on refresh
restoreSignalValuesOnRefresh: false
}

Is there a comparable option in OpenSearch Dashboards?

Thanks!