Skip to content

Commit

Permalink
Move nvd3 plugins into subdirectory
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Feb 11, 2018
1 parent 91c4641 commit 055e0fa
Show file tree
Hide file tree
Showing 23 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<macros>
<import>../../nvd3_bar/config/nvd3_shared.xml</import>
</macros>
<description>Renders a stacked bar diagram using NVD3 hosted at http://www.nvd3.org.</description>
<description>Renders a scatter plot using NVD3 hosted at http://www.nvd3.org.</description>
<expand macro="data"/>
<entry_point entry_point_type="chart" src="static/nvd3bar.js"></entry_point>
<entry_point entry_point_type="chart" src="../nvd3_bar/static/nvd3.js" css="../nvd3_bar/static/nvd3.css" func="nvd3_bar_stacked"/>
<specs>
<expand macro="specs"/>
<use_panels>no</use_panels>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</macros>
<description>Uses the R-based `charts` tool to derive a histogram and displays it as regular or stacked bar diagram using NVD3 hosted at http://www.nvd3.org.</description>
<expand macro="data"/>
<entry_point entry_point_type="chart" src="static/nvd3bar.js"></entry_point>
<entry_point entry_point_type="chart" src="../nvd3_bar/static/nvd3.js" css="../nvd3_bar/static/nvd3.css" func="nvd3_histogram"/>
<specs>
<expand macro="specs"/>
<use_panels>no</use_panels>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</macros>
<description>Uses the R-based `charts` tool to derive a histogram for discrete data e.g. text labels. The result is displayed as regular or stacked bar diagram using NVD3 hosted at http://www.nvd3.org.</description>
<expand macro="data"/>
<entry_point entry_point_type="chart" src="static/nvd3bar.js"></entry_point>
<entry_point entry_point_type="chart" src="../nvd3_bar/static/nvd3.js" css="../nvd3_bar/static/nvd3.css" func="nvd3_histogram_discrete"/>
<specs>
<expand macro="specs"/>
<use_panels>no</use_panels>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</macros>
<description>Renders a horizontal bar diagram using NVD3 hosted at http://www.nvd3.org.</description>
<expand macro="data"/>
<entry_point entry_point_type="chart" src="static/nvd3bar.js"></entry_point>
<entry_point entry_point_type="chart" src="../nvd3_bar/static/nvd3.js" css="../nvd3_bar/static/nvd3.css" func="nvd3_horizontal"/>
<specs>
<expand macro="specs"/>
<zoomable>true</zoomable>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</macros>
<description>Renders a stacked horizontal bar diagram using NVD3 hosted at http://www.nvd3.org.</description>
<expand macro="data"/>
<entry_point entry_point_type="chart" src="static/nvd3bar.js"></entry_point>
<entry_point entry_point_type="chart" src="../nvd3_bar/static/nvd3.js" css="../nvd3_bar/static/nvd3.css" func="nvd3_horizontal_stacked"/>
<specs>
<expand macro="specs"/>
<use_panels>no</use_panels>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</macros>
<description>Renders a line chart using NVD3 hosted at http://www.nvd3.org.</description>
<expand macro="data"/>
<entry_point entry_point_type="chart" src="static/nvd3bar.js"></entry_point>
<entry_point entry_point_type="chart" src="../nvd3_bar/static/nvd3.js" css="../nvd3_bar/static/nvd3.css" func="nvd3_line"/>
<specs>
<expand macro="specs"/>
<zoomable>true</zoomable>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</macros>
<description>Renders a line chart with focus using NVD3 hosted at http://www.nvd3.org.</description>
<expand macro="data"/>
<entry_point entry_point_type="chart" src="static/nvd3bar.js"></entry_point>
<entry_point entry_point_type="chart" src="../nvd3_bar/static/nvd3.js" css="../nvd3_bar/static/nvd3.css" func="nvd3_line_focus"/>
<specs>
<expand macro="specs"/>
<zoomable>native</zoomable>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</macros>
<description>Renders a pie chart using NVD3 hosted at http://www.nvd3.org.</description>
<expand macro="data"/>
<entry_point entry_point_type="chart" src="static/nvd3bar.js"></entry_point>
<entry_point entry_point_type="chart" src="../nvd3_bar/static/nvd3.js" css="../nvd3_bar/static/nvd3.css" func="nvd3_pie"/>
<specs>
<expand macro="specs"/>
<use_panels>yes</use_panels>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</macros>
<description>Renders a stacked area using NVD3 hosted at http://www.nvd3.org.</description>
<expand macro="data"/>
<entry_point entry_point_type="chart" src="static/nvd3bar.js"></entry_point>
<entry_point entry_point_type="chart" src="../nvd3_bar/static/nvd3.js" css="../nvd3_bar/static/nvd3.css" func="nvd3_stackedarea"/>
<specs>
<expand macro="specs"/>
<use_panels>no</use_panels>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</macros>
<description>Renders an expanded stacked area using NVD3 hosted at http://www.nvd3.org.</description>
<expand macro="data"/>
<entry_point entry_point_type="chart" src="static/nvd3bar.js"></entry_point>
<entry_point entry_point_type="chart" src="../nvd3_bar/static/nvd3.js" css="../nvd3_bar/static/nvd3.css" func="nvd3_stackedarea_full"/>
<specs>
<expand macro="specs"/>
<use_panels>no</use_panels>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</macros>
<description>Renders a stream chart using NVD3 hosted at http://www.nvd3.org.</description>
<expand macro="data"/>
<entry_point entry_point_type="chart" src="static/nvd3bar.js"></entry_point>
<entry_point entry_point_type="chart" src="../nvd3_bar/static/nvd3.js" css="../nvd3_bar/static/nvd3.css" func="nvd3_stackedarea_stream"/>
<specs>
<expand macro="specs"/>
<use_panels>no</use_panels>
Expand Down

0 comments on commit 055e0fa

Please sign in to comment.