scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
17 lines (16 loc) • 641 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SelectionChangedArgs3D = void 0;
/**
* Arguments passed into the callback for {@link SeriesSelectionModifier3D.selectionChanged} event
*/
var SelectionChangedArgs3D = /** @class */ (function () {
function SelectionChangedArgs3D(source, selectedSeries, allSeries, hitTestInfo) {
this.source = source;
this.selectedSeries = selectedSeries;
this.allSeries = allSeries;
this.hitTestInfo = hitTestInfo;
}
return SelectionChangedArgs3D;
}());
exports.SelectionChangedArgs3D = SelectionChangedArgs3D;