Skip to content
This repository has been archived by the owner on Mar 16, 2022. It is now read-only.

Commit

Permalink
#28 start with minimap
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Dec 19, 2016
1 parent 4ff2b99 commit 65a9c5c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
"dependencies": {
"@types/d3-array": "^1.0.5",
"@types/d3-axis": "^1.0.5",
"@types/d3-brush": "^1.0.6",
"@types/d3-drag": "^1.0.5",
"@types/d3-polygon": "^1.0.4",
"@types/d3-quadtree": "^1.0.4",
Expand All @@ -82,6 +83,7 @@
"@types/d3-zoom": "^1.0.5",
"d3-array": "^1.0.1",
"d3-axis": "^1.0.3",
"d3-brush": "^1.0.3",
"d3-drag": "^1.0.1",
"d3-polygon": "^1.0.1",
"d3-quadtree": "^1.0.1",
Expand Down
15 changes: 15 additions & 0 deletions src/MiniMap.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/**
* Created by sam on 19.12.2016.
*/

import Scatterplot from './Scatterplot';

export default class MiniMap {
constructor(private parent: HTMLElement, private plot: Scatterplot<any>) {

}

private build() {

}
}

0 comments on commit 65a9c5c

Please sign in to comment.