@progress/kendo-vue-charts
Version:
48 lines (47 loc) • 1.22 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 n } from "../base/ConfigurationComponent.mjs";
import { getDefaultSlots as o } from "@progress/kendo-vue-common";
import { removeUndefinedProps as r } from "../../utils/main.mjs";
import { defineComponent as i, h as f } from "vue";
const p = /* @__PURE__ */ i({
name: "KendoChartSeriesDefaultsNotes",
props: {
line: {
type: Object,
default: function() {
}
},
visual: {
type: Function,
default: void 0
},
icon: {
type: Object,
default: function() {
}
},
label: {
type: Object,
default: function() {
}
}
},
render() {
const e = o(this), t = r(this.$props);
return f(n, {
config: t,
chartKey: "notes"
}, function() {
return e;
});
}
});
export {
p as ChartSeriesDefaultsNotes
};