How-to

JDBC with SQLserver - Connection refused: connect



If you are trying to use SQLserver with InfoCaptor and are using the SQL Studio Express 2005 then you might encounter connection refused error Please try the following setup before attempting to connect open the Configuration ManagerStart -> Microsoft SQL Server 2005 -> Configuration Tools -> SQL Server Configuration Manager 2. Then at ...

InfoCaptor on other platforms



Download the zip file from this location http://www.infocaptor.com/files/setup/infocaptor_server_files.zip Extract the infocaptor_server.jar file in a directory and then depending on the platform type the following command from command line. java -jar infocaptor_server.jar

Thermometer chart in Dashboard | Create thermometer chart



To create this chart, your SQL should return only one column and one row select sum(quantity_sold) as qty_sold from [detail_data$] where fiscal_year = 2001 and country_region like 'Americas' (Complete Steps) Create Thermometers in Dashboard Tags: thermometer chart, dashboard thermometer, dashboard gauges, jfreechart thermometer

Line Chart in Dashboard | Create Line Chart



  The basic requirement for a line chart is same as the bar chart. You need minimum of two columns, if you add more than two columns then it adds another line in the same chart corresponding to the numeric column select job_type, max_salary as VAL , min_salary as SVAL from job_table (Complete Steps) Create Line ...

Dials and Gauges in Dashboards | Create Dial Charts



This is an alternative to the meter chart The requirement is the same as meter chart, your SQL should return only one column and one row, just a single cell value (Complete Steps) Create Dashboard Dials   Tags: dashboard gauges, dashboard dials, dashboard charts, speedometer chart, dial chart, meter chart

Meters | Speedometer | Gauges | Dials in Dashboards



To create this chart, your SQL should return only one column and one row (Complete Steps) Create Dashboard Gauges

Pie Chart in Dashboards | Create Pie Chart



  In order to create a Pie Chart, your SQL should return two columns as shown below select account , sum(amount) as Expense from [qb_data$] where "Account Type" = 'Expense' and date between #10/1/2007# and #05/23/2008# and class like '%' group by account (complete steps) Create Pie Chart for Dashboard

Stacked Bar in Dashboard | jfree stacked bar chart



  The basic requirement is that the SQL query should return three columns   for e.g. select Format(date,'YYMM') & ' - '& Format(date,'MMM') as Month , switch(class is null,'Unknown Class',class is not null,class) as class_type, sum(amount) as Expense from [qb_data$] where "Account Type" = 'Expense' and date between #10/1/2007# and #05/23/2008# and class like '%' group by Format(date,'YYMM') & ' ...

Series Bar Chart | Dashboard Series Bar Chart | jfreechart bar chart



  The basic requirement is that the SQL query should return three columns   for e.g. select Format(date,'YYMM') & ' - '& Format(date,'MMM') as Month , switch(class is null,'Unknown Class',class is not null,class) as class_type, sum(amount) as Expense from [qb_data$] where "Account Type" = 'Expense' and date between #10/1/2007# and #05/23/2008# and class like '%' group by Format(date,'YYMM') & ' ...

Bar chart in Dashboard | Create Bar Chart



A Bar Chart needs a minimum of two columns. The first column is the character based column (it could be a numeric but it forms the Axis column either X or Y). The second column is the numeric value column which represents the bars in the chart NOTE: You can have ...