Graph with overlapping labelsAlternatives to pie charts in a tableHow do you provide interaction in plots and...
Is Krishna the only avatar among dashavatara who had more than one wife?
Why TEventArgs wasn't made contravariant in standard event pattern in the .Net ecosystem?
Cookies - Should the toggles be on?
How to make ice magic work from a scientific point of view?
Variable is not visible
How to play electric guitar and bass as a duet
If I delete my router's history can my ISP still provide it to my parents?
In Linux what happens if 1000 files in a directory are moved to another location while another 300 files were added to the source directory?
A Missing Symbol for This Logo
How can I play a serial killer in a party of good PCs?
Which communication protocol is used in AdLib sound card?
Cat is tipping over bed-side lamps during the night
Why publish a research paper when a blog post or a lecture slide can have more citation count than a journal paper?
Why is Agricola named as such?
Early credit roll before the end of the film
What sets the resolution of an analog resistive sensor?
Non-Cancer terminal illness that can affect young (age 10-13) girls?
General past possibility with 'could'
Why was Lupin comfortable with saying Voldemort's name?
How do I append a character to the end of every line in an Excel cell?
Why is working on the same position for more than 15 years not a red flag?
Am I a Rude Number?
Why exactly do action photographers need high fps burst cameras?
How do you voice extended chords?
Graph with overlapping labels
Alternatives to pie charts in a tableHow do you provide interaction in plots and graphs on touch devices?Right to left graph labels for right-to-left languagesHow to handle overlapping elements?How to display more than 20 data sets?How to visually display overlapping informationHow to visualise flow in a graph with overlapping pathsDesigning legends to handle overlapping/sequential valuesShould axis label change depending on time on line graphs?Bar Chart Axis Labels
I have a web app that builds and displays a bar chart based on dollar amounts. A typical graph looks something like this:
As you can see, the layers at the bottom of the graph have dollar amounts that are too small to show their labels without them overlapping.
What's the best way to compensate for this so that the bottom of my graphs are easier to read?
Things I've thought of:
- Set up a minimum layer height so that the labels can't overlap. This looks the best but requires me to squish the remaining layers to make everything fit and so the graph is no longer accurate.
- When a layer is too short, stagger the labels so they don't overlap. This is better than them overlapping but still doesn't look great IMO.
- Remove the labels altogether and place them in a separate key/legend based on color. This is a clean solution but I already have the labels for the vertical slices separated into a key and I'm worried that the more I remove from the actual graph, the harder it is to interpret and therefore loses some of its value.
info-visualisation labels charts
add a comment |
I have a web app that builds and displays a bar chart based on dollar amounts. A typical graph looks something like this:
As you can see, the layers at the bottom of the graph have dollar amounts that are too small to show their labels without them overlapping.
What's the best way to compensate for this so that the bottom of my graphs are easier to read?
Things I've thought of:
- Set up a minimum layer height so that the labels can't overlap. This looks the best but requires me to squish the remaining layers to make everything fit and so the graph is no longer accurate.
- When a layer is too short, stagger the labels so they don't overlap. This is better than them overlapping but still doesn't look great IMO.
- Remove the labels altogether and place them in a separate key/legend based on color. This is a clean solution but I already have the labels for the vertical slices separated into a key and I'm worried that the more I remove from the actual graph, the harder it is to interpret and therefore loses some of its value.
info-visualisation labels charts
what do the colors signify in this chart? And is there a specific reason the are not in order of magnitude?
– Mike M
3 hours ago
@MikeM - The goal is to show a visual representation of the reinsurance process. So, in the example above, the first $180K is paid for by one party. The next $319K is paid for by someone else. The vertical slices represent when multiple parties split the bill. So the $3.5M after the first $1.5M (yellow layer) is split 3 ways with one party paying a smaller percentage.
– TheIronCheek
3 hours ago
how many splits can you have in a category? Is three the max? You could also have difficulty if multiple parties are splitting an already small category, am I correct?
– Mike M
3 hours ago
@MikeM - There's typically no more than 3. In theory, though, you're right. At one point the graph had labels directly on the splits that read something like "Reinsurer 1 - 40%", "Reinsurer 2 - 20%", "Reinsurer 3 - 40%".
– TheIronCheek
3 hours ago
@MikeM - So I pulled the labels for the splits out and placed them into a key that sits off to the right of the chart.
– TheIronCheek
3 hours ago
add a comment |
I have a web app that builds and displays a bar chart based on dollar amounts. A typical graph looks something like this:
As you can see, the layers at the bottom of the graph have dollar amounts that are too small to show their labels without them overlapping.
What's the best way to compensate for this so that the bottom of my graphs are easier to read?
Things I've thought of:
- Set up a minimum layer height so that the labels can't overlap. This looks the best but requires me to squish the remaining layers to make everything fit and so the graph is no longer accurate.
- When a layer is too short, stagger the labels so they don't overlap. This is better than them overlapping but still doesn't look great IMO.
- Remove the labels altogether and place them in a separate key/legend based on color. This is a clean solution but I already have the labels for the vertical slices separated into a key and I'm worried that the more I remove from the actual graph, the harder it is to interpret and therefore loses some of its value.
info-visualisation labels charts
I have a web app that builds and displays a bar chart based on dollar amounts. A typical graph looks something like this:
As you can see, the layers at the bottom of the graph have dollar amounts that are too small to show their labels without them overlapping.
What's the best way to compensate for this so that the bottom of my graphs are easier to read?
Things I've thought of:
- Set up a minimum layer height so that the labels can't overlap. This looks the best but requires me to squish the remaining layers to make everything fit and so the graph is no longer accurate.
- When a layer is too short, stagger the labels so they don't overlap. This is better than them overlapping but still doesn't look great IMO.
- Remove the labels altogether and place them in a separate key/legend based on color. This is a clean solution but I already have the labels for the vertical slices separated into a key and I'm worried that the more I remove from the actual graph, the harder it is to interpret and therefore loses some of its value.
info-visualisation labels charts
info-visualisation labels charts
edited 2 hours ago
Mike M
9,55111828
9,55111828
asked 4 hours ago
TheIronCheekTheIronCheek
1163
1163
what do the colors signify in this chart? And is there a specific reason the are not in order of magnitude?
– Mike M
3 hours ago
@MikeM - The goal is to show a visual representation of the reinsurance process. So, in the example above, the first $180K is paid for by one party. The next $319K is paid for by someone else. The vertical slices represent when multiple parties split the bill. So the $3.5M after the first $1.5M (yellow layer) is split 3 ways with one party paying a smaller percentage.
– TheIronCheek
3 hours ago
how many splits can you have in a category? Is three the max? You could also have difficulty if multiple parties are splitting an already small category, am I correct?
– Mike M
3 hours ago
@MikeM - There's typically no more than 3. In theory, though, you're right. At one point the graph had labels directly on the splits that read something like "Reinsurer 1 - 40%", "Reinsurer 2 - 20%", "Reinsurer 3 - 40%".
– TheIronCheek
3 hours ago
@MikeM - So I pulled the labels for the splits out and placed them into a key that sits off to the right of the chart.
– TheIronCheek
3 hours ago
add a comment |
what do the colors signify in this chart? And is there a specific reason the are not in order of magnitude?
– Mike M
3 hours ago
@MikeM - The goal is to show a visual representation of the reinsurance process. So, in the example above, the first $180K is paid for by one party. The next $319K is paid for by someone else. The vertical slices represent when multiple parties split the bill. So the $3.5M after the first $1.5M (yellow layer) is split 3 ways with one party paying a smaller percentage.
– TheIronCheek
3 hours ago
how many splits can you have in a category? Is three the max? You could also have difficulty if multiple parties are splitting an already small category, am I correct?
– Mike M
3 hours ago
@MikeM - There's typically no more than 3. In theory, though, you're right. At one point the graph had labels directly on the splits that read something like "Reinsurer 1 - 40%", "Reinsurer 2 - 20%", "Reinsurer 3 - 40%".
– TheIronCheek
3 hours ago
@MikeM - So I pulled the labels for the splits out and placed them into a key that sits off to the right of the chart.
– TheIronCheek
3 hours ago
what do the colors signify in this chart? And is there a specific reason the are not in order of magnitude?
– Mike M
3 hours ago
what do the colors signify in this chart? And is there a specific reason the are not in order of magnitude?
– Mike M
3 hours ago
@MikeM - The goal is to show a visual representation of the reinsurance process. So, in the example above, the first $180K is paid for by one party. The next $319K is paid for by someone else. The vertical slices represent when multiple parties split the bill. So the $3.5M after the first $1.5M (yellow layer) is split 3 ways with one party paying a smaller percentage.
– TheIronCheek
3 hours ago
@MikeM - The goal is to show a visual representation of the reinsurance process. So, in the example above, the first $180K is paid for by one party. The next $319K is paid for by someone else. The vertical slices represent when multiple parties split the bill. So the $3.5M after the first $1.5M (yellow layer) is split 3 ways with one party paying a smaller percentage.
– TheIronCheek
3 hours ago
how many splits can you have in a category? Is three the max? You could also have difficulty if multiple parties are splitting an already small category, am I correct?
– Mike M
3 hours ago
how many splits can you have in a category? Is three the max? You could also have difficulty if multiple parties are splitting an already small category, am I correct?
– Mike M
3 hours ago
@MikeM - There's typically no more than 3. In theory, though, you're right. At one point the graph had labels directly on the splits that read something like "Reinsurer 1 - 40%", "Reinsurer 2 - 20%", "Reinsurer 3 - 40%".
– TheIronCheek
3 hours ago
@MikeM - There's typically no more than 3. In theory, though, you're right. At one point the graph had labels directly on the splits that read something like "Reinsurer 1 - 40%", "Reinsurer 2 - 20%", "Reinsurer 3 - 40%".
– TheIronCheek
3 hours ago
@MikeM - So I pulled the labels for the splits out and placed them into a key that sits off to the right of the chart.
– TheIronCheek
3 hours ago
@MikeM - So I pulled the labels for the splits out and placed them into a key that sits off to the right of the chart.
– TheIronCheek
3 hours ago
add a comment |
2 Answers
2
active
oldest
votes
If it is absolutely necessary to see all the amounts in detail all the time you could go with a variation of your second solution but still keep the figures in one column. like this
Alternatively you could implement something like a magnifiyng glass to show the small amounts. I first thought about tool tips on hover but a amount could be so small, that the height of an amount is just one pixel an therefore not easy to hover over.
This is an attractive solution. The magnifying glass idea would work great for someone else but my graph gets converted to PDF so it can't be interactive.
– TheIronCheek
3 hours ago
If I can figure out how to code this from an HTML/CSS/JS perspective, this is probably my answer.
– TheIronCheek
3 hours ago
add a comment |
You have several visualization problems to solve in one graph. How are the users interacting with this?
Your question is focused mostly on labels, however, you also mentioned showing when an element is being split among several entities for payment.
So you have a stacked bar - like graph doing some heavy lifting.
Considering what you want the user to understand, you might consider altering the visualization type.
1. Consider a table for comparative values, and ability for sort and drilldown.
There are some tradeoffs (such as maybe more reading than a visual gestalt), but it brings data forward in a sortable fashion, and can show small % categories w/o eyestrain or interpretation.
Summary tables can:
- Show totals (the summary at bottom, so users know the total, if that's important)
- Show parts of the whole: the % column allows users to see relative values
- Split payments by category (instead of vertical lines the user has to see in small volume categories, just label the category, and allow for hover details)
- Sort for quick comparison
- Scale: As more categories are added you can add additional rows
- Display labels: your current labels still force the user to look for what color goes with which category
Is your visualization part of a larger dashboard?
If it is, you could put color legends in the table itself, to relate to other visualizations in close proximity:
2. Or, try a horizontal bar chart.
In the stacked area example, users have to use height to see magnitude comparison at a glance.
With a horizontal chart, you can take advantage of humans ability to assess values by length.
from Show me the Numbers, by Stephen Few (pg 94):
Visual perception is highly tuned for seeing differences among the lengths of objects that share a common baseline but not well attuned for discerning differences among 2-D areas.
I don't know if I truly understand your use case, but it seems that parsing categories, their magnitude, labels, and the need to indicate split payments might warrant experimenting with a different visualization type.
I'd say if a graph is necessary, a pie chart would be a much more apt chart here, but the separation between the data labels is a must. +1
– Anoplexian
51 mins ago
Your examples are great where magnitude is most important. In my situation, though, order is just as if not more important than magnitude. The point I'm trying to illustrate is who pays first and for how many dollars, followed by who pays second, etc.
– TheIronCheek
8 mins ago
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "102"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fux.stackexchange.com%2fquestions%2f124084%2fgraph-with-overlapping-labels%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
If it is absolutely necessary to see all the amounts in detail all the time you could go with a variation of your second solution but still keep the figures in one column. like this
Alternatively you could implement something like a magnifiyng glass to show the small amounts. I first thought about tool tips on hover but a amount could be so small, that the height of an amount is just one pixel an therefore not easy to hover over.
This is an attractive solution. The magnifying glass idea would work great for someone else but my graph gets converted to PDF so it can't be interactive.
– TheIronCheek
3 hours ago
If I can figure out how to code this from an HTML/CSS/JS perspective, this is probably my answer.
– TheIronCheek
3 hours ago
add a comment |
If it is absolutely necessary to see all the amounts in detail all the time you could go with a variation of your second solution but still keep the figures in one column. like this
Alternatively you could implement something like a magnifiyng glass to show the small amounts. I first thought about tool tips on hover but a amount could be so small, that the height of an amount is just one pixel an therefore not easy to hover over.
This is an attractive solution. The magnifying glass idea would work great for someone else but my graph gets converted to PDF so it can't be interactive.
– TheIronCheek
3 hours ago
If I can figure out how to code this from an HTML/CSS/JS perspective, this is probably my answer.
– TheIronCheek
3 hours ago
add a comment |
If it is absolutely necessary to see all the amounts in detail all the time you could go with a variation of your second solution but still keep the figures in one column. like this
Alternatively you could implement something like a magnifiyng glass to show the small amounts. I first thought about tool tips on hover but a amount could be so small, that the height of an amount is just one pixel an therefore not easy to hover over.
If it is absolutely necessary to see all the amounts in detail all the time you could go with a variation of your second solution but still keep the figures in one column. like this
Alternatively you could implement something like a magnifiyng glass to show the small amounts. I first thought about tool tips on hover but a amount could be so small, that the height of an amount is just one pixel an therefore not easy to hover over.
answered 3 hours ago
BrunoHBrunoH
1,252413
1,252413
This is an attractive solution. The magnifying glass idea would work great for someone else but my graph gets converted to PDF so it can't be interactive.
– TheIronCheek
3 hours ago
If I can figure out how to code this from an HTML/CSS/JS perspective, this is probably my answer.
– TheIronCheek
3 hours ago
add a comment |
This is an attractive solution. The magnifying glass idea would work great for someone else but my graph gets converted to PDF so it can't be interactive.
– TheIronCheek
3 hours ago
If I can figure out how to code this from an HTML/CSS/JS perspective, this is probably my answer.
– TheIronCheek
3 hours ago
This is an attractive solution. The magnifying glass idea would work great for someone else but my graph gets converted to PDF so it can't be interactive.
– TheIronCheek
3 hours ago
This is an attractive solution. The magnifying glass idea would work great for someone else but my graph gets converted to PDF so it can't be interactive.
– TheIronCheek
3 hours ago
If I can figure out how to code this from an HTML/CSS/JS perspective, this is probably my answer.
– TheIronCheek
3 hours ago
If I can figure out how to code this from an HTML/CSS/JS perspective, this is probably my answer.
– TheIronCheek
3 hours ago
add a comment |
You have several visualization problems to solve in one graph. How are the users interacting with this?
Your question is focused mostly on labels, however, you also mentioned showing when an element is being split among several entities for payment.
So you have a stacked bar - like graph doing some heavy lifting.
Considering what you want the user to understand, you might consider altering the visualization type.
1. Consider a table for comparative values, and ability for sort and drilldown.
There are some tradeoffs (such as maybe more reading than a visual gestalt), but it brings data forward in a sortable fashion, and can show small % categories w/o eyestrain or interpretation.
Summary tables can:
- Show totals (the summary at bottom, so users know the total, if that's important)
- Show parts of the whole: the % column allows users to see relative values
- Split payments by category (instead of vertical lines the user has to see in small volume categories, just label the category, and allow for hover details)
- Sort for quick comparison
- Scale: As more categories are added you can add additional rows
- Display labels: your current labels still force the user to look for what color goes with which category
Is your visualization part of a larger dashboard?
If it is, you could put color legends in the table itself, to relate to other visualizations in close proximity:
2. Or, try a horizontal bar chart.
In the stacked area example, users have to use height to see magnitude comparison at a glance.
With a horizontal chart, you can take advantage of humans ability to assess values by length.
from Show me the Numbers, by Stephen Few (pg 94):
Visual perception is highly tuned for seeing differences among the lengths of objects that share a common baseline but not well attuned for discerning differences among 2-D areas.
I don't know if I truly understand your use case, but it seems that parsing categories, their magnitude, labels, and the need to indicate split payments might warrant experimenting with a different visualization type.
I'd say if a graph is necessary, a pie chart would be a much more apt chart here, but the separation between the data labels is a must. +1
– Anoplexian
51 mins ago
Your examples are great where magnitude is most important. In my situation, though, order is just as if not more important than magnitude. The point I'm trying to illustrate is who pays first and for how many dollars, followed by who pays second, etc.
– TheIronCheek
8 mins ago
add a comment |
You have several visualization problems to solve in one graph. How are the users interacting with this?
Your question is focused mostly on labels, however, you also mentioned showing when an element is being split among several entities for payment.
So you have a stacked bar - like graph doing some heavy lifting.
Considering what you want the user to understand, you might consider altering the visualization type.
1. Consider a table for comparative values, and ability for sort and drilldown.
There are some tradeoffs (such as maybe more reading than a visual gestalt), but it brings data forward in a sortable fashion, and can show small % categories w/o eyestrain or interpretation.
Summary tables can:
- Show totals (the summary at bottom, so users know the total, if that's important)
- Show parts of the whole: the % column allows users to see relative values
- Split payments by category (instead of vertical lines the user has to see in small volume categories, just label the category, and allow for hover details)
- Sort for quick comparison
- Scale: As more categories are added you can add additional rows
- Display labels: your current labels still force the user to look for what color goes with which category
Is your visualization part of a larger dashboard?
If it is, you could put color legends in the table itself, to relate to other visualizations in close proximity:
2. Or, try a horizontal bar chart.
In the stacked area example, users have to use height to see magnitude comparison at a glance.
With a horizontal chart, you can take advantage of humans ability to assess values by length.
from Show me the Numbers, by Stephen Few (pg 94):
Visual perception is highly tuned for seeing differences among the lengths of objects that share a common baseline but not well attuned for discerning differences among 2-D areas.
I don't know if I truly understand your use case, but it seems that parsing categories, their magnitude, labels, and the need to indicate split payments might warrant experimenting with a different visualization type.
I'd say if a graph is necessary, a pie chart would be a much more apt chart here, but the separation between the data labels is a must. +1
– Anoplexian
51 mins ago
Your examples are great where magnitude is most important. In my situation, though, order is just as if not more important than magnitude. The point I'm trying to illustrate is who pays first and for how many dollars, followed by who pays second, etc.
– TheIronCheek
8 mins ago
add a comment |
You have several visualization problems to solve in one graph. How are the users interacting with this?
Your question is focused mostly on labels, however, you also mentioned showing when an element is being split among several entities for payment.
So you have a stacked bar - like graph doing some heavy lifting.
Considering what you want the user to understand, you might consider altering the visualization type.
1. Consider a table for comparative values, and ability for sort and drilldown.
There are some tradeoffs (such as maybe more reading than a visual gestalt), but it brings data forward in a sortable fashion, and can show small % categories w/o eyestrain or interpretation.
Summary tables can:
- Show totals (the summary at bottom, so users know the total, if that's important)
- Show parts of the whole: the % column allows users to see relative values
- Split payments by category (instead of vertical lines the user has to see in small volume categories, just label the category, and allow for hover details)
- Sort for quick comparison
- Scale: As more categories are added you can add additional rows
- Display labels: your current labels still force the user to look for what color goes with which category
Is your visualization part of a larger dashboard?
If it is, you could put color legends in the table itself, to relate to other visualizations in close proximity:
2. Or, try a horizontal bar chart.
In the stacked area example, users have to use height to see magnitude comparison at a glance.
With a horizontal chart, you can take advantage of humans ability to assess values by length.
from Show me the Numbers, by Stephen Few (pg 94):
Visual perception is highly tuned for seeing differences among the lengths of objects that share a common baseline but not well attuned for discerning differences among 2-D areas.
I don't know if I truly understand your use case, but it seems that parsing categories, their magnitude, labels, and the need to indicate split payments might warrant experimenting with a different visualization type.
You have several visualization problems to solve in one graph. How are the users interacting with this?
Your question is focused mostly on labels, however, you also mentioned showing when an element is being split among several entities for payment.
So you have a stacked bar - like graph doing some heavy lifting.
Considering what you want the user to understand, you might consider altering the visualization type.
1. Consider a table for comparative values, and ability for sort and drilldown.
There are some tradeoffs (such as maybe more reading than a visual gestalt), but it brings data forward in a sortable fashion, and can show small % categories w/o eyestrain or interpretation.
Summary tables can:
- Show totals (the summary at bottom, so users know the total, if that's important)
- Show parts of the whole: the % column allows users to see relative values
- Split payments by category (instead of vertical lines the user has to see in small volume categories, just label the category, and allow for hover details)
- Sort for quick comparison
- Scale: As more categories are added you can add additional rows
- Display labels: your current labels still force the user to look for what color goes with which category
Is your visualization part of a larger dashboard?
If it is, you could put color legends in the table itself, to relate to other visualizations in close proximity:
2. Or, try a horizontal bar chart.
In the stacked area example, users have to use height to see magnitude comparison at a glance.
With a horizontal chart, you can take advantage of humans ability to assess values by length.
from Show me the Numbers, by Stephen Few (pg 94):
Visual perception is highly tuned for seeing differences among the lengths of objects that share a common baseline but not well attuned for discerning differences among 2-D areas.
I don't know if I truly understand your use case, but it seems that parsing categories, their magnitude, labels, and the need to indicate split payments might warrant experimenting with a different visualization type.
edited 1 hour ago
answered 2 hours ago
Mike MMike M
9,55111828
9,55111828
I'd say if a graph is necessary, a pie chart would be a much more apt chart here, but the separation between the data labels is a must. +1
– Anoplexian
51 mins ago
Your examples are great where magnitude is most important. In my situation, though, order is just as if not more important than magnitude. The point I'm trying to illustrate is who pays first and for how many dollars, followed by who pays second, etc.
– TheIronCheek
8 mins ago
add a comment |
I'd say if a graph is necessary, a pie chart would be a much more apt chart here, but the separation between the data labels is a must. +1
– Anoplexian
51 mins ago
Your examples are great where magnitude is most important. In my situation, though, order is just as if not more important than magnitude. The point I'm trying to illustrate is who pays first and for how many dollars, followed by who pays second, etc.
– TheIronCheek
8 mins ago
I'd say if a graph is necessary, a pie chart would be a much more apt chart here, but the separation between the data labels is a must. +1
– Anoplexian
51 mins ago
I'd say if a graph is necessary, a pie chart would be a much more apt chart here, but the separation between the data labels is a must. +1
– Anoplexian
51 mins ago
Your examples are great where magnitude is most important. In my situation, though, order is just as if not more important than magnitude. The point I'm trying to illustrate is who pays first and for how many dollars, followed by who pays second, etc.
– TheIronCheek
8 mins ago
Your examples are great where magnitude is most important. In my situation, though, order is just as if not more important than magnitude. The point I'm trying to illustrate is who pays first and for how many dollars, followed by who pays second, etc.
– TheIronCheek
8 mins ago
add a comment |
Thanks for contributing an answer to User Experience Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fux.stackexchange.com%2fquestions%2f124084%2fgraph-with-overlapping-labels%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
what do the colors signify in this chart? And is there a specific reason the are not in order of magnitude?
– Mike M
3 hours ago
@MikeM - The goal is to show a visual representation of the reinsurance process. So, in the example above, the first $180K is paid for by one party. The next $319K is paid for by someone else. The vertical slices represent when multiple parties split the bill. So the $3.5M after the first $1.5M (yellow layer) is split 3 ways with one party paying a smaller percentage.
– TheIronCheek
3 hours ago
how many splits can you have in a category? Is three the max? You could also have difficulty if multiple parties are splitting an already small category, am I correct?
– Mike M
3 hours ago
@MikeM - There's typically no more than 3. In theory, though, you're right. At one point the graph had labels directly on the splits that read something like "Reinsurer 1 - 40%", "Reinsurer 2 - 20%", "Reinsurer 3 - 40%".
– TheIronCheek
3 hours ago
@MikeM - So I pulled the labels for the splits out and placed them into a key that sits off to the right of the chart.
– TheIronCheek
3 hours ago