在基本使用说明中,横向分组只有一个月份,实际可以添加多个作为横向分组 ![](https://img.kancloud.cn/09/03/0903ba3decc7a5d520a575a47c6b8a4c_711x203.png) 实际的数据效果: ![](https://img.kancloud.cn/86/c1/86c1ac3d1bad587b63f396be79383e4a_1614x276.png) json数据集数据: ``` { "data": [{ "region": "华东", "sales": 1000, "gifts": 100, "month": "1月", "year": 2021 },{ "region": "华东", "sales": 1000, "gifts": 100, "month": "1月", "year": 2022 },{ "region": "华东", "sales": 1000, "gifts": 100, "month": "2月", "year": 2022 },{ "region": "华东", "sales": 1000, "gifts": 100, "month": "2月", "year": 2021 },{ "region": "华东", "sales": 1000, "gifts": 100, "month": "1月", "year": 2022 },{ "region": "华东", "sales": 1000, "gifts": 100, "month": "2月", "year": 2022 },{ "region": "华东", "sales": 1000, "gifts": 100, "month": "1月", "year": 2021 },{ "region": "华东", "sales": 1000, "gifts": 100, "month": "2月", "year": 2021 },{ "region": "华东", "sales": 2000, "gifts": 200, "month": "2月", "year": 2021 },{ "region": "华东", "sales": 3000, "gifts": 300, "month": "1月", "year": 2021 },{ "region": "华东", "sales": 2000, "gifts": 200, "month": "2月", "year": 2022 },{ "region": "华东", "sales": 3000, "gifts": 300, "month": "1月", "year": 2022 },{ "region": "华北", "sales": 5000, "gifts": 600, "month": "1月", "year": 2022 },{ "region": "华北", "sales": 6000, "gifts": 600, "month": "2月", "year": 2022 },{ "region": "华北", "sales": 5000, "gifts": 600, "month": "1月", "year": 2021 },{ "region": "华北", "sales": 6000, "gifts": 600, "month": "2月", "year": 2021 },{ "region": "华北", "sales": 7000, "gifts": 600, "month": "2月", "year": 2021 },{ "region": "华北", "sales": 7000, "gifts": 600, "month": "1月", "year": 2021 },{ "region": "华北", "sales": 7000, "gifts": 600, "month": "2月", "year": 2022 },{ "region": "华北", "sales": 7000, "gifts": 600, "month": "1月", "year": 2022 }] } ```