How to create PI Chart

0
How can we create PI Chart in mendix ?
asked
8 answers
2

Hi Arvind,

I just created a test project, with the default Pie Chart available in Mendix 7.22.2. This works fine. 

Try using this documentation : https://docs.mendix.com/refguide/charts-configuration

answered
0

for me non of them are installing and working :(

answered
0

Hello Roy,

I tried the same documentation but i am unable to do it. can you share me the steps ?

answered
0

I am getting below error. 

answered
0

Hi Arvind,

this means it needs to be in a dataview. For example:

Leads to:

 

answered
0

Thanks !! Still i am not able to do .

I have a master table and there is like status and based on status i have to show the pi chart. what i did.

1.Added on data view on page

2.Data view connection with object.

3.Placed pi chart.

4. Configured pi chart

5. Same error

answered
0

I have added as below

answered
0

I need the result based on status count and group by it. 

Select COUNT(Status) as CountValue,ProductionDocuments.ProductionDocument.Status as StatusName from ProductionDocuments.ProductionDocument 
where ProductionDocuments.ProductionDocument/Status != NULL
GROUP BY ProductionDocuments.ProductionDocument/Status 

answered