gitextract_tmwn_v_x/ ├── .eslintrc.json ├── .gitignore ├── .jshintrc ├── .travis.yml ├── GruntFile.js ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── README.md ├── bower.json ├── build/ │ ├── nv.d3.css │ └── nv.d3.js ├── composer.json ├── examples/ │ ├── TimeSeries.html │ ├── actual.json │ ├── boxPlot.html │ ├── boxPlotCustomModel.html │ ├── bullet.html │ ├── bulletChart.html │ ├── candlestick.html │ ├── candlestickChart.html │ ├── cumulativeLineChart.html │ ├── differenceChart.html │ ├── discreteBarChart.html │ ├── distroPlotChart.html │ ├── documentation.html │ ├── donutChart.html │ ├── forceDirected.html │ ├── furiousLegend.html │ ├── heatMap.html │ ├── historicalBar.html │ ├── historicalBarChart.html │ ├── index.html │ ├── legend.html │ ├── lib/ │ │ ├── colorbrewer.js │ │ └── stream_layers.js │ ├── line.html │ ├── lineChart.html │ ├── lineChartLogScale.html │ ├── lineChartSVGResize.html │ ├── linePlusBarChart.html │ ├── lineWithFocusChart.html │ ├── lineWithFocusChart_x2AxisLabel.html │ ├── monitoringChart.html │ ├── multiBarChart.html │ ├── multiBarChart2.html │ ├── multiBarHorizontalChart.html │ ├── multiChart.html │ ├── ohlc.html │ ├── ohlcChart.html │ ├── parallelCoordinates.html │ ├── parallelCoordinatesChart.html │ ├── pie.html │ ├── pieChart.html │ ├── predicted.json │ ├── sankeyChart.html │ ├── scatter.html │ ├── scatterChart.html │ ├── scatterPlusLineChart.html │ ├── site.html │ ├── sparkline.html │ ├── sparklinePlus.html │ ├── stackedArea.html │ ├── stackedAreaChart.html │ ├── stackedAreaWithFocusChart.html │ ├── stylesheets/ │ │ ├── pygment_trac.css │ │ └── styles.css │ ├── sunburst.html │ └── tooltip.html ├── index.html ├── meteor/ │ └── export.js ├── package.js ├── package.json ├── src/ │ ├── core.js │ ├── css/ │ │ ├── axis.css │ │ ├── bars.css │ │ ├── boxplot.css │ │ ├── bullet.css │ │ ├── candlestick.css │ │ ├── forceDirectedGraph.css │ │ ├── furiousLegend.css │ │ ├── lineplusbar.css │ │ ├── lines.css │ │ ├── main.css │ │ ├── ohlc.css │ │ ├── parallelcoordinates.css │ │ ├── pie.css │ │ ├── scatter.css │ │ ├── sparkline.css │ │ ├── stackedarea.css │ │ └── tooltip.css │ ├── dom.js │ ├── interactiveLayer.js │ ├── models/ │ │ ├── axis.js │ │ ├── boxPlot.js │ │ ├── boxPlotChart.js │ │ ├── bullet.js │ │ ├── bulletChart.js │ │ ├── candlestickBar.js │ │ ├── cumulativeLineChart.js │ │ ├── differenceChart.js │ │ ├── discreteBar.js │ │ ├── discreteBarChart.js │ │ ├── distribution.js │ │ ├── distroPlot.js │ │ ├── distroPlotChart.js │ │ ├── focus.js │ │ ├── forceDirectedGraph.js │ │ ├── furiousLegend.js │ │ ├── heatMap.js │ │ ├── heatMapChart.js │ │ ├── historicalBar.js │ │ ├── historicalBarChart.js │ │ ├── legend.js │ │ ├── line.js │ │ ├── lineChart.js │ │ ├── linePlusBarChart.js │ │ ├── multiBar.js │ │ ├── multiBarChart.js │ │ ├── multiBarHorizontal.js │ │ ├── multiBarHorizontalChart.js │ │ ├── multiChart.js │ │ ├── ohlcBar.js │ │ ├── parallelCoordinates.js │ │ ├── parallelCoordinatesChart.js │ │ ├── pie.js │ │ ├── pieChart.js │ │ ├── sankey.js │ │ ├── sankeyChart.js │ │ ├── scatter.js │ │ ├── scatterChart.js │ │ ├── sparkline.js │ │ ├── sparklinePlus.js │ │ ├── stackedArea.js │ │ ├── stackedAreaChart.js │ │ ├── sunburst.js │ │ └── sunburstChart.js │ ├── tooltip.js │ └── utils.js └── test/ ├── ScatterChartTest.html ├── bootstrapModalTest.html ├── boxPlotTest.html ├── cumulativeLineChart.html ├── lineChartTest.html ├── linePlusBarChart.html ├── linePlusBarWithFocusChart.html ├── lineWithFisheyeChart.html ├── lineWithFocusChart.html ├── lineWithFocusChartMissingData.html ├── mocha/ │ ├── axis.coffee │ ├── boxplot.coffee │ ├── bullet.coffee │ ├── core.coffee │ ├── cumulative-line.coffee │ ├── differenceChart.js │ ├── discretebar.coffee │ ├── distrochart.coffee │ ├── heatmap.coffee │ ├── historical-bar.coffee │ ├── legend.coffee │ ├── line.coffee │ ├── multibar-horizontal.coffee │ ├── multibar.coffee │ ├── pie.coffee │ ├── sankey.coffee │ ├── scatter.coffee │ ├── sparkline.coffee │ ├── stacked.coffee │ ├── sunburst.coffee │ ├── test-utils.coffee │ └── utils.coffee ├── multiBarChartTest.html ├── multiBarHorizontalChart.html ├── node/ │ ├── GruntFile.js │ ├── README.md │ ├── nodeTest.html │ ├── nodeTest.js │ └── package.json ├── pieChartTest.html ├── polylinearTest.html ├── realTimeChartTest.html ├── scatterPlusLineChart.html ├── scrollTest.html ├── scrollTest2.html ├── stackedAreaChartMissingData.html ├── stackedAreaChartTest.html ├── stream_layers.js ├── testScript.js ├── teststyle.css ├── tinytest/ │ └── nv-is-defined-test.js └── translateTest.html