How add the Filter parameter in OAC dashboard embbed HTML page
Summary
I want to add the filter parameter in HTML code to embedd the OAC DashboardContent
I have embedded the OAC dashboard in an HTML page using the below code. I can see the filter defined in OAC the same as in OAC embed HTML page. But here I would like to know,.If there any possible way to Show embed dashboard with a default filter. bypassing any parameter in the below HTML code.
Code Snippet
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
   <head>
      <title>AJAX Standalone Demo</title>
      <script src="
https://rpvoac-bmgbckwtdu4e-bo.analytics.ocp.oraclecloud.com/public/dv/v1/embedding/standalone/embedding.js"
type="text/javascript">
      </script> 
   </head>
   <body>
      <h1>AJAX Standalone Demo</h1>
      <div style="position: absolute; width: calc(100% - 40px); height: calc(100% - 
120px)" >
  <oracle-dv project-path="/@Catalog/users/<login user>/covid" active-page="canvas" active-tab-id="4">
</oracle-dv>
      </div>
   <script>
requirejs(['knockout', 'ojs/ojcore', 'ojs/ojknockout', 'ojs/ojcomposite', 'jet-composites/oracle-dv/loader'], function(ko) {   ko.applyBindings();
});
      </script>
   </body>
</html>                1