UNPKG

@progress/kendo-vue-charts

Version:
54 lines (53 loc) 1.43 kB
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { Configuration as n } from "../../base/ConfigurationComponent.mjs"; import { getDefaultSlots as r } from "@progress/kendo-vue-common"; import { removeUndefinedProps as o } from "../../../utils/main.mjs"; import { defineComponent as i, h as u } from "vue"; const m = /* @__PURE__ */ i({ name: "KendoChartNavigatorCategoryAxisSelect", props: { from: { type: [Object, Number, String], default: function() { } }, max: { type: [Object, Number, String, Date], default: function() { } }, min: { type: [Object, Number, String, Date], default: function() { } }, mousewheel: { type: [Object, Boolean], default: function() { } }, to: { type: [Object, Number, String], default: function() { } } }, render() { const e = r(this), t = o(this.$props); return u(n, { config: t, chartKey: "select" }, function() { return e; }); } }); export { m as ChartNavigatorCategoryAxisSelect };