UNPKG

@progress/kendo-vue-charts

Version:
51 lines (50 loc) 1.41 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 o, templateRendering as i, getListeners as d } from "@progress/kendo-vue-common"; import { removeUndefinedProps as f } from "../../utils/main.mjs"; import { defineComponent as p, h as s } from "vue"; const m = /* @__PURE__ */ p({ name: "KendoChartSeriesItemTooltip", props: { background: String, border: { type: Object, default: function() { } }, color: String, font: String, format: String, padding: { type: [Object, Number], default: function() { } }, render: [String, Function, Object], visible: { type: Boolean, default: !0 } }, render() { const t = o(this), e = f(this.$props), r = i.call(this, this.$props.render, d.call(this)); return s(n, { config: { ...e, render: r }, chartKey: "tooltip" }, function() { return t; }); } }); export { m as ChartSeriesItemTooltip };