Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7398635
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T03:53:41+00:00 2026-05-29T03:53:41+00:00

(I know there are post about data visualization, but none of them completely answered

  • 0

(I know there are post about data visualization, but none of them completely answered my question.)

I am looking for a tool to generate charts from data. I want to tool that is be able to do some computation for me, not only show the data a nice way.

For example here is data from tests I run:

{
    "destination" : "30be317c-e586-4448-8fed-1a9481710670",
    "source" : "30be317c-e586-4448-8fed-1a9481710670",
    "userStatus" : "UNDEF",
    "testName" : "VolumeUp",
    "testStatus" : "WORKED",
    "testStart" : 1323378809108,
    "testEnd" : 1323378809108
}, {
    "destination" : "30be317c-e586-4448-8fed-1a9481710670",
    "source" : "30be317c-e586-4448-8fed-1a9481710670",
    "userStatus" : "FAILED",
    "testName" : "VolumeDown",
    "testStatus" : "FAILED",
    "testStart" : 1323378814065,
    "testEnd" : 1323378816077
}

Note this is currently in JSON, but I can transform it to XML or push it to a database if needed.

What I would like to have is a way to tell the tool:

Create a table with:

  • Column one: number of "testStatus" : "WORKED"
  • Column two: number of "testStatus" : "FAILED"
  • Column three: percentage between one and two.
  • Rows: "testName"
  • Show the percentage higher than 90% in green

The calculations remain very basic.
I did some research and found tools that do it (JasperReport, SpagoBI, RapidMiner) but all of them seem to be too much of a pain to generate easy reports like mine.

Is there a tool/framework that could help me doing that?
Or will I have to do the calculations by myself and use a tool like Google Visualization API to show the output?

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T03:53:41+00:00Added an answer on May 29, 2026 at 3:53 am

    I would take a look at JavaScript libraries like Sencha (ext-JS).

    Check out their documentation: http://docs.sencha.com/ext-js/4-0/#!/api/Ext.grid.Panel

    You can define a store with your data using the json format. You can add a field to your store based on the value of each record. If you need to have this value relative to all the others as percentile, you can listen to the ‘load’ event and traverse the records to calculate this ‘high’/’low’ value.

    Ext.create('Ext.data.Store', {
      storeId:'myStore',
      fields:['destination', 'source', 'testName', 'testStatus', 'testStart', 'testEnd'],
      data:{'items':[
        // ... your data here
      ]},
      proxy: {
        type: 'memory',
        reader: {
            type: 'json',
            root: 'items'
        }
      }
    });
    

    Then you can create a grid view of your data, using any of their built-in views. You can define Renderer that will add a class with the calculated value. Using simple CSS you can color each class with a different color.

    Ext.create('Ext.grid.Panel', {
      title: 'My Data',
      store: Ext.data.StoreManager.lookup('myStore'),
      columns: [
        { header: 'Test Name',  dataIndex: 'testName' },
        { header: 'Value', 
           dataIndex: 'calculatedValue', 
           renderer: function(value) {
            return Ext.String.format('<span class="{0}">{1}</span>', value, value);
           } 
        },
        // Other columns
      ],
      height: 200,
      width: 400,
      renderTo: Ext.getBody()
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know there are alot of different questions about this but none of them
I know there is this post , but I still want to know more
Is there a way to obtain the post data itself? I know spring handles
Earlier on i post a question about visualization and clustering. I guess my question
I know there are more threads about this but they dont help me and
I have a question about this question . I posted a reply there but
I know that there are many post about hot to use jQuery with mootools,
Before I start, I know there is this post and it doesn't answer my
I know there is a registry key indicating the install directory, but I don't
I know there are a lot of positive things mod-rewrite accomplishes. But are there

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.