Coaching Tools
Group People Radar Graphs
This tool creates a Group People Radar Graph. The datasets are the different members of the team. They can be switched on and off by clicking on the legend in the graph or by selecting the checkbox next to a team member's name.
You can add and remove Life Languages from the chart using the drop down in the table.
Click on the name of a team member to see their individual profile.
Click on a column heading in the chart to sort in descending/ascending order of that Life Language. A line is drawn at the 50 mark, indicating which team members are fluent in that Life Language.
Use the chart to compare two or three team members at a time. It might be team members that are working on a project together or you might compare the leader of the team with another team member.
- For those team members, what blind spots might they have in their communication style? That is, which Languages are they not as fluent in?
- Consulting the Quick Reference Guide, what would questions could they ask themselves when working together that would mitigate that blind spot?
- Which languages are they most likely to start communicating together in? What types of projects would benefit from those strengths?
- Are there any aspects to their Life Language scores where they might not communicate well? What types of projects or discussions would they need to be more deliberate in their communication style? For example, a marketing nurturing campaign might need Influencer and Responder when developing the messaging.
Multiple (CSV)
- Copy your group data from the group report into this Excel table
- Save as a CSV file locally.
- Open the CSV file in a text editor like WordPad (Windows) or TextEdit (Mac).
- Copy the CSV data and paste into the CSV Formatted Data field on this page.
- Click the submit button to see your report.
Multiple (JSON)
To use:
- Copy your group data from the group report into this Excel table.
- Save as a CSV file locally
- Go to the following web page: https://www.convertcsv.com/csv-to-json.htm.
CSV to JSON button. - Copy the contents of the Result Data field on that page into the JSON Formatted Data field on this page.
- 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;