UNPKG

@progress/kendo-vue-charts

Version:
61 lines (60 loc) 1.49 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 l = /* @__PURE__ */ i({ name: "KendoChartAxisDefaultsLabels", props: { content: { type: Function, default: void 0 }, font: String, format: String, margin: { type: [Object, Number], default: function() { } }, mirror: Boolean, padding: { type: [Object, Number], default: function() { } }, rotation: { type: [Object, Number, String], default: function() { } }, skip: Number, step: Number, visible: { type: Boolean, default: void 0 }, visual: { type: Function, default: void 0 } }, render() { const e = r(this), t = o(this.$props); return u(n, { config: t, chartKey: "labels" }, function() { return e; }); } }); export { l as ChartAxisDefaultsLabels };