jQWidgets jqxBulletChart destroy()方法

  • Post category:jquery

jqxBulletChart 是 jQWidgets 提供的一个图表控件,destroy() 方法用于销毁该控件及其相关资源。以下是使用 destroy() 方法的完整攻略:

步骤

  1. 创建一个 jqxBulletChart 实例:

javascript
// 创建 jqxBulletChart 实例
let bulletChart = jqwidgets.createInstance('#bulletChartContainer', 'jqxBulletChart', options);

  1. 调用 destroy() 方法销毁该实例:

javascript
// 销毁 jqxBulletChart 实例
bulletChart.destroy();

调用 destroy() 方法后,该实例及其相关资源将被销毁,无法再次使用。

示例

以下是两个示例,演示如何使用 destroy() 方法销毁 jqxBulletChart 实例。

示例 1

// 创建 jqxBulletChart 实例
let bulletChart = jqwidgets.createInstance('#bulletChartContainer', 'jqxBulletChart', options);

// 销毁 jqxBulletChart 实例
bulletChart.destroy();

示例 2

// 创建 jqxBulletChart 实例
let bulletChart = jqwidgets.createInstance('#bulletChartContainer', 'jqxBulletChart', options);

// 点击按钮销毁 jqxBulletChart 实例
$('#destroyButton').on('click', function() {
  bulletChart.destroy();
});

在示例 2 中,当用户点击按钮时,destroy() 方法将被调用,销毁 jqxBulletChart 实例。