In the above example, the requirement is to code the bars based on the value of the bar.
To achieve this you need to enable Dynamic Java Script and then add the following Java Script. You need to understand the code that is highlighted in Orange. Basically you can supply any ...
Posted in Charts, General | No Comments »
Once you purchase a license of InfoCaptor, Please send us the following information.
Go to Help Menu -> Register
Copy the highlighted User key text (sample user key shown in yellow below)
Please email the above user key so that license key can be generated and will be emailed back ASAP.
Posted in General | No Comments »
How hard is to create a decent interactive Dashboard?
To illustrate my point, here is an example tutorial, [just glance through the document from top to bottom and come back to continue this dialog] tutorial from Microsoft website
The tutorial is without any screenshots! The tutorial is then a never ending ...
Posted in General | No Comments »
Lets follow some comparison and arguments to determine if InfoCaptor is really an Anti Dashboarding tool. For this comparision we will refer to the Dashboards from the big vendors as big-guy-dashboards.
Big-guy-dashboards are huge in all respect- InfoCaptor is agile in all respects
All the big-guy-dashboard tools need some kind of server ...
Posted in General | 1 Comment »
Dashboards are affordable, Get them for your Business
Most businesses (medium and small) use systems that are easy to understand, implement and manage. Microsoft Excel, Ms Access, and some of the open source database systems (like MySQL) are very popular with these businesses.
Now when it comes to reporting why would you ...
Posted in General | No Comments »
There are tons of vendors providing Dashboard technology in one form or other. Most of these vendors are huge software companies and they charge a hefty license fee for their software. Do you want to spend 100K to million dollars on their software? This is just the license fee. You ...
Posted in General | No Comments »
EkaPlus InfoCaptor Site license for $800
This special pricing includes unlimited Developer and unlimited Viewer licenses.
Upon purchase a site license key will be delivered via email and this can be used on any number of InfoCaptor installations.
...
Posted in General | No Comments »
Sample Bar chart with custom colors
Following is the Beanshell code to produce the above custom colors.
CustomBarRenderer barRenderer = new CustomBarRenderer(
new Paint[]
{
new Color(193,157,246),
new Color(152,185,185),
new Color(72,72,117),
new Color(157,141,110),
new Color(181,181,119),
new Color(151,199,151),
new Color(191,167,182),
new Color(217,182,144),
new Color(102,153,255),
new Color(0,102,102),
new Color(84,72,84),
new Color(180,236,203),
}
);
plot.setRenderer(barRenderer);
barRenderer.setDrawBarOutline(false);
/*
barRenderer.setOutlinePaint(Color.blue);
barRenderer.setOutlineStroke(new BasicStroke(1.1f, BasicStroke.JOIN_ROUND, BasicStroke.JOIN_BEVEL));
GradientPaint gp0 = new GradientPaint( 0.0f, 0.0f, Color.blue, 0.0f, 0.0f,Color.white );
GradientPaint gp1 = new GradientPaint( ...
Posted in General | No Comments »