Hi all!Do you know if igPieChart supports any kind of "empty template"?
In certain situations, the dataSource of my chart is binded to a list with no items (json object "[ ]") and the pie is not drawn.Is there any option to draw something indicating "no data", instead? A light-grey-border with an icon maybe, or a text, or anything else... Or do I have to handle it manually?
Thank you, Maria
Hello Maria,
Please feel free to contact me if you have any additional questions regarding this matter.
After investigating this further and doing some research, having an empty template for igPieChart has been determined to be a new product idea. You can suggest new product ideas for future versions (or vote for existing ones) at <http://ideas.infragistics.com>.
There are many benefits to submitting a product idea:
- Direct communication with our product management team regarding your product idea.
- Notifications whenever new information regarding your idea becomes available.
- Ability to vote on your favorite product ideas to let us know which ones are the most important to you. You will have ten votes for this and can change which ideas you are voting for at any time.
- Allow you to shape the future of our products by requesting new controls and products altogether.
- You and other developers can discuss existing product ideas with members of our Product Management team.
Steps to create your idea:
The Product Idea site puts you in the driver’s seat and allows you to track the progress of your ideas at any time, see how many votes it got, read comments from other developers in the community, and see if someone from the product team has additional questions for you.
However, what I can suggest as a workaround for this scenario is handling $(document).ready jQuery event. In this event the length of the json object acting as your datasource could be checked and if there are no items inside this json the innerHTML property of the div, used for the chart, could be set to display any message. For example:
$(function () { $(document).ready(function () { if (data.length == 0) { document.getElementById("chart").innerHTML = "Enter your message for empty datasource here"; } }); });
$(function () {
$(document).ready(function () {
if (data.length == 0) {
document.getElementById("chart").innerHTML = "Enter your message for empty datasource here";
}
});
I also made a small sample illustrating my suggestion and I am attaching it for your reference.
I hope you find this information helpful.
Please let me know if you need any additional information regarding this matter.