Skip to content

Commit

Permalink
Merge pull request #34 from ivylabs/0.0.4
Browse files Browse the repository at this point in the history
0.0.4
  • Loading branch information
latinojoel committed Sep 4, 2014
2 parents 6eb44ed + 8321b74 commit 505f29a
Show file tree
Hide file tree
Showing 36 changed files with 4,675 additions and 10,600 deletions.
20 changes: 13 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,12 @@ This is a plugin for Pentaho platform with custom CDE Components to use in your
![Ivy DC](http://www.ivy-is.co.uk/wp-content/uploads/2014/04/ivydc_samples.png)
![Ivy DC](http://www.ivy-is.co.uk/wp-content/uploads/2014/04/ivydc_docs1.png)

#Some of the features in this 0.0.3 release:
* Summary Component
* Export Data
#Some of the features in this 0.0.4 release:
* Comparison / Pyramid Chart
* Funnel Chart
* Features and bugs fixed on others components


#What is the road map for the next version?
* Summary Component
* d3js Neighborhood chart
* d3js Zoomable Pack chart
* ...

We dare you to improve this plugin with ideias, starts, pull request, ...
Expand All @@ -24,6 +20,16 @@ We dare you to improve this plugin with ideias, starts, pull request, ...

#Old Realeases

###0.0.3 release:


* Summary Component
* Export Data
* Features and bugs fixed on others components




###0.0.2 release:


Expand Down
Empty file added dashboards/admin/README.md
Empty file.
51 changes: 51 additions & 0 deletions dashboards/main.cda
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@
<Initscript></Initscript>
<Language>beanshell</Language>
</Connection>
<Connection id="FUNNEL_QUERY_SAMPLE" type="scripting.scripting">
<Initscript></Initscript>
<Language>beanshell</Language>
</Connection>
<Connection id="PYRAMID_QUERY_SAMPLE" type="scripting.scripting">
<Initscript></Initscript>
<Language>beanshell</Language>
</Connection>
<Connection id="MAP_QUERY_SAMPLE" type="scripting.scripting">
<Initscript></Initscript>
<Language>beanshell</Language>
Expand All @@ -28,6 +36,49 @@ TypedTableModel model = new TypedTableModel(columnNames, columnTypes);

model.addRow(new Object[] {"Gauge Title", 320});

return model;</Query>
</DataAccess>
<DataAccess access="public" cache="true" cacheDuration="3600"
connection="FUNNEL_QUERY_SAMPLE"
id="FUNNEL_QUERY_SAMPLE"
type="scriptable">
<Columns/>
<Parameters/>
<Query>import org.pentaho.reporting.engine.classic.core.util.TypedTableModel;
String [] columnNames = {"Title","Value"};
Class[] columnTypes = {String.class, Integer.class};
TypedTableModel model = new TypedTableModel(columnNames, columnTypes);


model.addRow(new Object[] {"CTO", 34534});
model.addRow(new Object[] {"CEO", 34435});
model.addRow(new Object[] {"CCO", 43545});
model.addRow(new Object[] {"CAO", 32543});
model.addRow(new Object[] {"CDO", 36652});
model.addRow(new Object[] {"CDO", 32567});
model.addRow(new Object[] {"CKO", 32462});

return model;</Query>
</DataAccess>
<DataAccess access="public" cache="true" cacheDuration="3600"
connection="PYRAMID_QUERY_SAMPLE"
id="PYRAMID_QUERY_SAMPLE"
type="scriptable">
<Columns/>
<Parameters/>
<Query>import org.pentaho.reporting.engine.classic.core.util.TypedTableModel;
String [] columnNames = {"Title","Value1","Value2"};
Class[] columnTypes = {String.class, Integer.class, Integer.class};
TypedTableModel model = new TypedTableModel(columnNames, columnTypes);


model.addRow(new Object[] {"CTO", 43545, 36652});
model.addRow(new Object[] {"CDO", 36652, 34435});
model.addRow(new Object[] {"CEO", 34435, 32462});
model.addRow(new Object[] {"CKO", 32462, 32567});
model.addRow(new Object[] {"CDO", 32567, 32543});
model.addRow(new Object[] {"CAO", 32543, 30242});

return model;</Query>
</DataAccess>
<DataAccess access="public" cache="true" cacheDuration="3600" connection="MAP_QUERY_SAMPLE"
Expand Down
Loading

0 comments on commit 505f29a

Please sign in to comment.