yilmazcakmakci / diversity

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Diversity

🚀 This project is being developed using Vue.js and FusionCharts.

👉 Project is live at https://diversityapp.netlify.app/

Parsing Data

Input

Array of all single records.

[
    {
        id: "someId",
        createdTime: "2020-06-07T13:00:19.000Z",
        fields: {
            Age: 25,
            Ethnicity: "Hispanic or Latino",
            Gender: "Man",
            Language: ["English", "Turkish"],
            Location:"NA"
        }
    },
    {...},
    {...}
]

Output

[
    {
        title: "Gender",
        data: [
            {
                label: "Man",
                value: 4
            },
            {
                label: "Woman",
                value: 5
            },
            {...}
        ]
    },
    {...},
    {...}
]

About


Languages

Language:JavaScript 67.8%Language:Vue 18.3%Language:CSS 7.2%Language:HTML 6.7%