0.3.0 • Published 3 years ago

tvjs-xp v0.3.0

Weekly downloads
22
License
MIT
Repository
github
Last release
3 years ago

TVJS Std Extension Pack npm license size license build

Install

nmp i tvjs-xp

List of extensions

NameAuthorTypeDescriptionVersion
chart-linkStdSquadExtSync multiple charts (cursors, drawing tools)1.0.0
grid-resizeStdSquadExtResize vertical sections1.0.0
legend-buttonsStdSquadExtMoving overlays aroud, adding, removing1.0.0
settings-winStdSquadExtChanging script props (settings)1.0.0

Usage

<template>
<trading-vue :data="dc" :extensions="ext"/>
</template>
<script>

import TradingVue from 'trading-vue-js'
import XP from 'tvjs-xp'

export default {
    name: 'app',
    components: { TradingVue },
    data() {
        return {
            ext: Object.values(XP),
            dc: new DataCube(...)
        }
    }
}

</script>

In browser:

//...
ext: Object.values(TvjsXP.default),
//...