Skip to content
Merged

Two #30

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 24 additions & 3 deletions examples-src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@
:pMarginLeft="120"
:pMarginRight="10"
:pMarginBottom="150"
:showDownloadButton="true"
>
<Axis
slot="axisLeft"
Expand Down Expand Up @@ -134,6 +135,7 @@
:pMarginLeft="120"
:pMarginRight="10"
:pMarginBottom="100"
:showDownloadButton="true"
>
<Axis
slot="axisLeft"
Expand Down Expand Up @@ -170,6 +172,7 @@
:pMarginLeft="120"
:pMarginRight="10"
:pMarginBottom="100"
:showDownloadButton="true"
>
<Axis
slot="axisLeft"
Expand Down Expand Up @@ -208,6 +211,7 @@
:pMarginLeft="120"
:pMarginRight="10"
:pMarginBottom="100"
:showDownloadButton="true"
>
<Axis
slot="axisLeft"
Expand Down Expand Up @@ -247,6 +251,7 @@
:pMarginLeft="120"
:pMarginRight="10"
:pMarginBottom="100"
:showDownloadButton="true"
>
<Axis
slot="axisLeft"
Expand Down Expand Up @@ -283,6 +288,7 @@
:pMarginLeft="120"
:pMarginRight="10"
:pMarginBottom="50"
:showDownloadButton="true"
>
<Axis
slot="axisLeft"
Expand Down Expand Up @@ -313,6 +319,7 @@
:pMarginLeft="120"
:pMarginRight="10"
:pMarginBottom="180"
:showDownloadButton="true"
>
<Axis
slot="axisLeft"
Expand Down Expand Up @@ -348,9 +355,10 @@
:pWidth="700"
:pHeight="40"
:pMarginTop="10"
:pMarginLeft="10"
:pMarginLeft="40"
:pMarginRight="10"
:pMarginBottom="180"
:showDownloadButton="true"
>
<TrackPlot
slot="plot"
Expand Down Expand Up @@ -379,6 +387,7 @@
:pMarginLeft="150"
:pMarginRight="20"
:pMarginBottom="80"
:showDownloadButton="true"
>
<Axis
slot="axisLeft"
Expand Down Expand Up @@ -418,6 +427,7 @@
:pMarginLeft="150"
:pMarginRight="20"
:pMarginBottom="80"
:showDownloadButton="true"
>
<Axis
slot="axisLeft"
Expand Down Expand Up @@ -455,6 +465,7 @@
:pMarginLeft="180"
:pMarginRight="20"
:pMarginBottom="20"
:showDownloadButton="true"
>
<Axis
slot="axisLeft"
Expand Down Expand Up @@ -484,6 +495,7 @@
:pMarginLeft="180"
:pMarginRight="20"
:pMarginBottom="200"
:showDownloadButton="true"
>
<DendrogramAxis
slot="axisTop"
Expand Down Expand Up @@ -534,6 +546,7 @@
:pMarginLeft="20"
:pMarginRight="20"
:pMarginBottom="80"
:showDownloadButton="true"
>
<GenomeTrackPlot
slot="plot"
Expand Down Expand Up @@ -564,6 +577,7 @@
:pMarginLeft="150"
:pMarginRight="20"
:pMarginBottom="80"
:showDownloadButton="true"
>
<Axis
slot="axisLeft"
Expand Down Expand Up @@ -663,6 +677,7 @@
:pMarginLeft="120"
:pMarginRight="10"
:pMarginBottom="180"
:showDownloadButton="true"
>
<Axis
slot="axisLeft"
Expand Down Expand Up @@ -705,6 +720,7 @@
:pMarginLeft="120"
:pMarginRight="10"
:pMarginBottom="180"
:showDownloadButton="true"
>
<Axis
slot="axisLeft"
Expand Down Expand Up @@ -746,6 +762,7 @@
:pMarginLeft="120"
:pMarginRight="10"
:pMarginBottom="180"
:showDownloadButton="true"
>
<Axis
slot="axisLeft"
Expand Down Expand Up @@ -789,6 +806,7 @@
:pMarginLeft="120"
:pMarginRight="10"
:pMarginBottom="180"
:showDownloadButton="true"
>
<Axis
slot="axisLeft"
Expand Down Expand Up @@ -829,6 +847,7 @@
:pMarginLeft="120"
:pMarginRight="10"
:pMarginBottom="180"
:showDownloadButton="true"
>
<Axis
slot="axisLeft"
Expand Down Expand Up @@ -868,9 +887,10 @@
:pWidth="50"
:pHeight="30"
:pMarginTop="5"
:pMarginLeft="20"
:pMarginRight="20"
:pMarginLeft="40"
:pMarginRight="40"
:pMarginBottom="50"
:showDownloadButton="true"
>
<RectPlot
slot="plot"
Expand All @@ -892,6 +912,7 @@
:pMarginLeft="120"
:pMarginRight="10"
:pMarginBottom="180"
:showDownloadButton="true"
>
<Axis
slot="axisLeft"
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vueplotlib",
"version": "1.7.0",
"version": "1.8.0",
"private": false,
"scripts": {
"serve": "vue-cli-service serve --open ./examples-src/index.js",
Expand All @@ -19,7 +19,8 @@
"d3-dispatch-nosplit": "^2.0.1",
"lodash": "^4.17.11",
"save-svg-as-png": "^1.4.6",
"simple-statistics": "^6.1.1"
"simple-statistics": "^6.1.1",
"two.js": "^0.7.0-beta.3"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.0-beta.6",
Expand Down
Loading