Coaching Tools

Group Life Language Radar Graphs

Multiple (CSV)

* Generate random test data
To use:

  1. Copy your group data from the group report into this Excel table
  2. Save as a CSV file locally.
  3. Open the CSV file in a text editor like WordPad (Windows) or TextEdit (Mac).
  4. Copy the CSV data and paste into the CSV Formatted Data field on this page.
  5. Click the submit button to see your report.

Multiple (JSON)

* Generate random test data

To use:

  1. Copy your group data from the group report into this Excel table.
  2. Save as a CSV file locally
  3. Go to the following web page: https://www.convertcsv.com/csv-to-json.htm.
  4. CSV to JSON button.
  5. Copy the contents of the Result Data field on that page into the JSON Formatted Data field on this page.
  6. Click the submit button to see your report.

N.B. JSON is best used programmatically. In this case, the JSON encoded data is appended to the URL. For example:

let person1 = { fullName: "John Smith", companyName: "Acme Inc", mover: 65, doer: 77, ... };
let person2 = { fullName: "Jane Doe", companyName: "Acme Inc", mover: 56, doer: 88, ... };
let data= [ person1, person2 ];

let cTargetURLPrefix = "https://www.relatematters.com/coaching-tools/CommunicationIndicators.html";
let str = JSON.stringify(data);
let url = new URL(`${cTargetURLPrefix}?json=${encodeURIComponent(str)}`);
window.location.href = url;
The data should be an array of objects, each of which should have keys equal to the column headers in the sample CSV and data values as specified per person.