@progress/kendo-vue-charts
Version:
41 lines (40 loc) • 1.13 kB
JavaScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 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 e } from "@progress/kendo-vue-common";
import { removeUndefinedProps as i } from "../../utils/main.mjs";
import { defineComponent as n, h as s } from "vue";
const m = /* @__PURE__ */ n({
name: "KendoChartValueAxisCrosshair",
props: {
color: String,
opacity: Number,
visible: {
type: Boolean,
default: !0
},
width: Number,
tooltip: {
type: Object,
default: function() {
}
}
},
render() {
const o = e(this), r = i(this.$props);
return s(t, {
config: r,
chartKey: "crosshair"
}, function() {
return o;
});
}
});
export {
m as ChartValueAxisCrosshair
};