Angular PolarChart Methods
beginUpdate()
Prevents the UI component from refreshing until the endUpdate() method is called.
The beginUpdate() and endUpdate() methods prevent the UI component from excessive updates when you are changing multiple UI component settings at once. After the beginUpdate() method is called, the UI component does not update its UI until the endUpdate() method is called.
See Also
dispose()
After calling this method, remove the DOM element associated with the UI component:
$("#myPolarChart").dxPolarChart("dispose"); $("#myPolarChart").remove();
Use this method only if the UI component was created with jQuery or pure JavaScript. In Angular, Vue, and React, use conditional rendering:
Angular
<dx-polar-chart ... *ngIf="condition"> </dx-polar-chart>
Vue
<template> <DxPolarChart ... v-if="condition"> </DxPolarChart> </template> <script> import DxPolarChart from 'devextreme-vue/polar-chart'; export default { components: { DxPolarChart } } </script>
React
import React from 'react'; import PolarChart from 'devextreme-react/polar-chart'; function DxPolarChart(props) { if (!props.shouldRender) { return null; } return ( <PolarChart ... > </PolarChart> ); } class App extends React.Component { render() { return ( <DxPolarChart shouldRender="condition" /> ); } } export default App;
See Also
getDataSource()
Gets the DataSource instance.
See Also
- Call Methods: Angular | Vue | React | jQuery | AngularJS | Knockout
- Data Layer - Overview
- Data Layer - DataSource Examples
getInstance(element)
getInstance is a static method that the UI component class supports. The following code demonstrates how to get the PolarChart instance found in an element with the myPolarChart
ID:
// Modular approach import PolarChart from "devextreme/viz/polar_chart"; ... let element = document.getElementById("myPolarChart"); let instance = PolarChart.getInstance(element) as PolarChart; // Non-modular approach let element = document.getElementById("myPolarChart"); let instance = DevExpress.viz.dxPolarChart.getInstance(element);
See Also
render()
Normally, the UI component redraws itself automatically after the browser window is resized. But on rare occasions, you may need to request the redrawing, for example, after the UI component's container is resized. For this purpose, call the render() method.
See Also
render(renderOptions)
You can call the render method without parameters after the size or visibility of the UI component container is changed. Alternatively, call the render method passing an object as the parameter. This object must contain the force field set to 'true'. In addition, you can use this object to specify whether or not to perform animation on redrawing with the animate field.
The following code sample illustrates the example of the object that can be passed to the render method.
var renderOptions = { force: true, // forces redrawing animate: false // redraws the UI component without animation }
See Also
resetVisualRange()
Resets the value axis' visual range to the data range or to the whole range if it is within the data range.
If you have technical questions, please create a support ticket in the DevExpress Support Center.