@progress/kendo-vue-charts
Version:
46 lines (45 loc) • 1.26 kB
JavaScript
/**
* @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 o } from "../base/ConfigurationComponent.mjs";
import { getDefaultSlots as n } from "@progress/kendo-vue-common";
import { removeUndefinedProps as r } from "../../utils/main.mjs";
import { defineComponent as i, h as s } from "vue";
const c = /* @__PURE__ */ i({
name: "KendoChartYAxisNotesIcon",
props: {
background: String,
border: {
type: Object,
default: void 0
},
size: Number,
type: {
type: String,
default: void 0,
validator: function(e) {
return ["square", "circle", "triangle", "cross"].includes(e);
}
},
visible: {
type: Boolean,
default: void 0
}
},
render() {
const e = n(this), t = r(this.$props);
return s(o, {
config: t,
chartKey: "icon"
}, function() {
return e;
});
}
});
export {
c as ChartYAxisNotesIcon
};