@progress/kendo-vue-charts
Version:
64 lines (63 loc) • 1.46 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 t } from "./base/ConfigurationComponent.mjs";
import { getDefaultSlots as r } from "@progress/kendo-vue-common";
import { removeUndefinedProps as d } from "../utils/main.mjs";
import { defineComponent as u, h as o } from "vue";
const m = /* @__PURE__ */ u({
name: "KendoChartPane",
props: {
background: {
type: String,
default: void 0
},
border: {
type: Object,
default: function() {
}
},
clip: {
type: Boolean,
default: void 0
},
height: {
type: Number,
default: void 0
},
margin: {
type: [Object, Number],
default: function() {
}
},
name: {
type: String,
default: void 0
},
padding: {
type: [Object, Number],
default: function() {
}
},
title: {
type: [Object, String],
default: function() {
}
}
},
render() {
const e = r(this), n = d(this.$props);
return o(t, {
config: n
}, function() {
return e;
});
}
});
export {
m as ChartPane
};