mcp-server-chart

mcp-server-chart

4.5

mcp-server-chart is hosted online, so all tools can be tested directly either in theTools tabor in theOnline Client.

If you are the rightful owner of mcp-server-chart and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcpreview.com.

A Model Context Protocol server for generating charts using AntV.

generate_area_chart

Generate a area chart to show data trends under continuous independent variables and observe the overall data trend, such as, displacement = velocity (average or instantaneous) × time: s = v × t. If the x-axis is time (t) and the y-axis is velocity (v) at each moment, an area chart allows you to observe the trend of velocity over time and infer the distance traveled by the area's size.

Try it

Data for area chart, such as, [{ time: '2018', value: 99.9 }].

data

Data for area chart, such as, [{ time: '2018', value: 99.9 }].

            Whether stacking is enabled. When enabled, area charts require a 'group' field in the data.

            Whether stacking is enabled. When enabled, area charts require a 'group' field in the data.

              Set the theme for the chart, optional, default is 'default'.

                Set the width of chart, default is 600.

                  Set the height of chart, default is 400.

                    Set the title of chart.

                      Set the x-axis title of chart.

                        Set the y-axis title of chart.

                            Result:

                            generate_bar_chart

                            Generate a bar chart to show data for numerical comparisons among different categories, such as, comparing categorical data and for horizontal comparisons.

                            Try it

                            Data for bar chart, such as, [{ category: '分类一', value: 10 }].

                            data

                            Data for bar chart, such as, [{ category: '分类一', value: 10 }].

                                      Whether grouping is enabled. When enabled, bar charts require a 'group' field in the data. When `group` is true, `stack` should be false.

                                      Whether grouping is enabled. When enabled, bar charts require a 'group' field in the data. When `group` is true, `stack` should be false.

                                        Whether stacking is enabled. When enabled, bar charts require a 'group' field in the data. When `stack` is true, `group` should be false.

                                        Whether stacking is enabled. When enabled, bar charts require a 'group' field in the data. When `stack` is true, `group` should be false.

                                          Set the theme for the chart, optional, default is 'default'.

                                            Set the width of chart, default is 600.

                                              Set the height of chart, default is 400.

                                                Set the title of chart.

                                                  Set the x-axis title of chart.

                                                    Set the y-axis title of chart.

                                                        Result:

                                                        generate_boxplot_chart

                                                        Generate a boxplot chart to show data for statistical summaries among different categories, such as, comparing the distribution of data points across categories.

                                                        Try it

                                                        Data for boxplot chart, such as, [{ category: '分类一', value: 10 }] or [{ category: '分类二', value: 20, group: '组别一' }].

                                                        data

                                                        Data for boxplot chart, such as, [{ category: '分类一', value: 10 }] or [{ category: '分类二', value: 20, group: '组别一' }].

                                                        Category of the data point, such as '分类一'.

                                                          Value of the data point, such as 10.

                                                            Optional group for the data point, used for grouping in the boxplot.

                                                                  Set the theme for the chart, optional, default is 'default'.

                                                                    Set the width of chart, default is 600.

                                                                      Set the height of chart, default is 400.

                                                                        Set the title of chart.

                                                                          Set the x-axis title of chart.

                                                                            Set the y-axis title of chart.

                                                                                Result:

                                                                                generate_column_chart

                                                                                Generate a column chart, which are best for comparing categorical data, such as, when values are close, column charts are preferable because our eyes are better at judging height than other visual elements like area or angles.

                                                                                Try it

                                                                                Data for column chart, such as, [{ category: '北京', value: 825, group: '油车' }].

                                                                                data

                                                                                Data for column chart, such as, [{ category: '北京', value: 825, group: '油车' }].

                                                                                          Whether grouping is enabled. When enabled, column charts require a 'group' field in the data. When `group` is true, `stack` should be false.

                                                                                          Whether grouping is enabled. When enabled, column charts require a 'group' field in the data. When `group` is true, `stack` should be false.

                                                                                            Whether stacking is enabled. When enabled, column charts require a 'group' field in the data. When `stack` is true, `group` should be false.

                                                                                            Whether stacking is enabled. When enabled, column charts require a 'group' field in the data. When `stack` is true, `group` should be false.

                                                                                              Set the theme for the chart, optional, default is 'default'.

                                                                                                Set the width of chart, default is 600.

                                                                                                  Set the height of chart, default is 400.

                                                                                                    Set the title of chart.

                                                                                                      Set the x-axis title of chart.

                                                                                                        Set the y-axis title of chart.

                                                                                                            Result:

                                                                                                            generate_district_map

                                                                                                            Generates regional distribution maps, which are usually used to show the administrative divisions and coverage of a dataset. It is not suitable for showing the distribution of specific locations, such as urban administrative divisions, GDP distribution maps of provinces and cities across the country, etc. This tool is limited to generating data maps within China.

                                                                                                            Try it

                                                                                                            The map title should not exceed 16 characters. The content should be consistent with the information the map wants to convey and should be accurate, rich, creative, and attractive.

                                                                                                              Administrative division data, lower-level administrative divisions are optional. There are usually two scenarios: one is to simply display the regional composition, only `fillColor` needs to be configured, and all administrative divisions are consistent, representing that all blocks are connected as one; the other is the regional data distribution scenario, first determine the `dataType`, `dataValueUnit` and `dataLabel` configurations, `dataValue` should be a meaningful value and consistent with the meaning of dataType, and then determine the style configuration. The `fillColor` configuration represents the default fill color for areas without data. Lower-level administrative divisions do not need `fillColor` configuration, and their fill colors are determined by the `colors` configuration (If `dataType` is "number", only one base color (warm color) is needed in the list to calculate the continuous data mapping color band; if `dataType` is "enum", the number of color values in the list is equal to the number of enumeration values (contrast colors)). If `subdistricts` has a value, `showAllSubdistricts` must be set to true. For example, {"title": "陕西省地级市分布图", "data": {"name": "陕西省", "showAllSubdistricts": true, "dataLabel": "城市", "dataType": "enum", "colors": ["#4ECDC4", "#A5D8FF"], "subdistricts": [{"name": "西安市", "dataValue": "省会"}, {"name": "宝鸡市", "dataValue": "地级市"}, {"name": "咸阳市", "dataValue": "地级市"}, {"name": "铜川市", "dataValue": "地级市"}, {"name": "渭南市", "dataValue": "地级市"}, {"name": "延安市", "dataValue": "地级市"}, {"name": "榆林市", "dataValue": "地级市"}, {"name": "汉中市", "dataValue": "地级市"}, {"name": "安康市", "dataValue": "地级市"}, {"name": "商洛市", "dataValue": "地级市"}]}, "width": 1000, "height": 1000}.

                                                                                                              Keywords for the Chinese name of an administrative region (must be within China), and must be one of China, province, city, district, or county. The name should be more specific and add attributive descriptions, for example, "西安市" is better than "西安", "杭州西湖区" is better than "西湖区". It cannot be a specific place name or a vague name, such as "其它".

                                                                                                                Style settings.

                                                                                                                Fill color, rgb or rgba format.

                                                                                                                    Data color list, in rgb or rgba format.

                                                                                                                    colors

                                                                                                                    Data color list, in rgb or rgba format.

                                                                                                                                          The type of the data value, numeric or enumeration type

                                                                                                                                            Data label, such as "GDP"

                                                                                                                                              Data value, numeric string or enumeration string.

                                                                                                                                                Data unit, such as "万亿"

                                                                                                                                                  Whether to display all subdistricts.

                                                                                                                                                  Whether to display all subdistricts.

                                                                                                                                                    Sub-administrative regions are used to display the regional composition or regional distribution of related data.

                                                                                                                                                    subdistricts

                                                                                                                                                    Sub-administrative regions are used to display the regional composition or regional distribution of related data.

                                                                                                                                                    No items yet. Use the button below to add some.

                                                                                                                                                        Set the width of map, default is 1600.

                                                                                                                                                          Set the height of map, default is 1000.

                                                                                                                                                              Result:

                                                                                                                                                              generate_dual_axes_chart

                                                                                                                                                              Generate a dual axes chart which is a combination chart that integrates two different chart types, typically combining a bar chart with a line chart to display both the trend and comparison of data, such as, the trend of sales and profit over time.

                                                                                                                                                              Try it

                                                                                                                                                              Categories for dual axes chart, such as, ['2015', '2016', '2017'].

                                                                                                                                                              categories

                                                                                                                                                              Categories for dual axes chart, such as, ['2015', '2016', '2017'].

                                                                                                                                                                  Series for dual axes chart, such as, [{ type: 'column', data: [91.9, 99.1, 101.6, 114.4, 121], axisYTitle: '销售额' }, { type: 'line', data: [0.055, 0.06, 0.062, 0.07, 0.075], 'axisYTitle': '利润率' }].

                                                                                                                                                                  series

                                                                                                                                                                  Series for dual axes chart, such as, [{ type: 'column', data: [91.9, 99.1, 101.6, 114.4, 121], axisYTitle: '销售额' }, { type: 'line', data: [0.055, 0.06, 0.062, 0.07, 0.075], 'axisYTitle': '利润率' }].

                                                                                                                                                                  The optional value can be 'column' or 'line'.

                                                                                                                                                                    When type is column, the data represents quantities, such as [91.9, 99.1, 101.6, 114.4, 121]. When type is line, the data represents ratios and its values are recommended to be less than 1, such as [0.055, 0.06, 0.062, 0.07, 0.075].

                                                                                                                                                                    data

                                                                                                                                                                    When type is column, the data represents quantities, such as [91.9, 99.1, 101.6, 114.4, 121]. When type is line, the data represents ratios and its values are recommended to be less than 1, such as [0.055, 0.06, 0.062, 0.07, 0.075].

                                                                                                                                                                    No items yet. Use the button below to add some.

                                                                                                                                                                      Set the y-axis title of the chart series, such as, axisYTitle: '销售额'.

                                                                                                                                                                            Set the theme for the chart, optional, default is 'default'.

                                                                                                                                                                              Set the width of chart, default is 600.

                                                                                                                                                                                Set the height of chart, default is 400.

                                                                                                                                                                                  Set the title of chart.

                                                                                                                                                                                    Set the x-axis title of chart.

                                                                                                                                                                                        Result:

                                                                                                                                                                                        generate_fishbone_diagram

                                                                                                                                                                                        Generate a fishbone diagram chart to uses a fish skeleton, like structure to display the causes or effects of a core problem, with the problem as the fish head and the causes/effects as the fish bones. It suits problems that can be split into multiple related factors.

                                                                                                                                                                                        Try it

                                                                                                                                                                                        Data for fishbone diagram chart, such as, { name: 'main topic', children: [{ name: 'topic 1', children: [{ name: 'subtopic 1-1' }] }.

                                                                                                                                                                                          children

                                                                                                                                                                                          No items yet. Use the button below to add some.

                                                                                                                                                                                              Set the theme for the chart, optional, default is 'default'.

                                                                                                                                                                                                Set the width of chart, default is 600.

                                                                                                                                                                                                  Set the height of chart, default is 400.

                                                                                                                                                                                                      Result:

                                                                                                                                                                                                      generate_flow_diagram

                                                                                                                                                                                                      Generate a flow diagram chart to show the steps and decision points of a process or system, such as, scenarios requiring linear process presentation.

                                                                                                                                                                                                      Try it

                                                                                                                                                                                                      Data for flow diagram chart, such as, { nodes: [{ name: 'node1' }, { name: 'node2' }], edges: [{ source: 'node1', target: 'node2', name: 'edge1' }] }.

                                                                                                                                                                                                      nodes

                                                                                                                                                                                                            edges

                                                                                                                                                                                                            No items yet. Use the button below to add some.

                                                                                                                                                                                                                Set the theme for the chart, optional, default is 'default'.

                                                                                                                                                                                                                  Set the width of chart, default is 600.

                                                                                                                                                                                                                    Set the height of chart, default is 400.

                                                                                                                                                                                                                        Result:

                                                                                                                                                                                                                        generate_funnel_chart

                                                                                                                                                                                                                        Generate a funnel chart to visualize the progressive reduction of data as it passes through stages, such as, the conversion rates of users from visiting a website to completing a purchase.

                                                                                                                                                                                                                        Try it

                                                                                                                                                                                                                        Data for funnel chart, such as, [{ category: '浏览网站', value: 50000 }, { category: '放入购物车', value: 35000 }, { category: '生成订单', value: 25000 }, { category: '支付订单', value: 15000 }, { category: '完成交易', value: 8000 }].

                                                                                                                                                                                                                        data

                                                                                                                                                                                                                        Data for funnel chart, such as, [{ category: '浏览网站', value: 50000 }, { category: '放入购物车', value: 35000 }, { category: '生成订单', value: 25000 }, { category: '支付订单', value: 15000 }, { category: '完成交易', value: 8000 }].

                                                                                                                                                                                                                                Set the theme for the chart, optional, default is 'default'.

                                                                                                                                                                                                                                  Set the width of chart, default is 600.

                                                                                                                                                                                                                                    Set the height of chart, default is 400.

                                                                                                                                                                                                                                      Set the title of chart.

                                                                                                                                                                                                                                          Result:

                                                                                                                                                                                                                                          generate_histogram_chart

                                                                                                                                                                                                                                          Generate a histogram chart to show the frequency of data points within a certain range. It can observe data distribution, such as, normal and skewed distributions, and identify data concentration areas and extreme points.

                                                                                                                                                                                                                                          Try it

                                                                                                                                                                                                                                          Data for histogram chart, such as, [78, 88, 60, 100, 95].

                                                                                                                                                                                                                                          data

                                                                                                                                                                                                                                          Data for histogram chart, such as, [78, 88, 60, 100, 95].

                                                                                                                                                                                                                                              Number of intervals to define the number of intervals in a histogram.

                                                                                                                                                                                                                                                Set the theme for the chart, optional, default is 'default'.

                                                                                                                                                                                                                                                  Set the width of chart, default is 600.

                                                                                                                                                                                                                                                    Set the height of chart, default is 400.

                                                                                                                                                                                                                                                      Set the title of chart.

                                                                                                                                                                                                                                                        Set the x-axis title of chart.

                                                                                                                                                                                                                                                          Set the y-axis title of chart.

                                                                                                                                                                                                                                                              Result:

                                                                                                                                                                                                                                                              generate_line_chart

                                                                                                                                                                                                                                                              Generate a line chart to show trends over time, such as, the ratio of Apple computer sales to Apple's profits changed from 2000 to 2016.

                                                                                                                                                                                                                                                              Try it

                                                                                                                                                                                                                                                              Data for line chart, such as, [{ time: '2015', value: 23 }].

                                                                                                                                                                                                                                                              data

                                                                                                                                                                                                                                                              Data for line chart, such as, [{ time: '2015', value: 23 }].

                                                                                                                                                                                                                                                                      Whether stacking is enabled. When enabled, line charts require a 'group' field in the data.

                                                                                                                                                                                                                                                                      Whether stacking is enabled. When enabled, line charts require a 'group' field in the data.

                                                                                                                                                                                                                                                                        Set the theme for the chart, optional, default is 'default'.

                                                                                                                                                                                                                                                                          Set the width of chart, default is 600.

                                                                                                                                                                                                                                                                            Set the height of chart, default is 400.

                                                                                                                                                                                                                                                                              Set the title of chart.

                                                                                                                                                                                                                                                                                Set the x-axis title of chart.

                                                                                                                                                                                                                                                                                  Set the y-axis title of chart.

                                                                                                                                                                                                                                                                                      Result:

                                                                                                                                                                                                                                                                                      generate_liquid_chart

                                                                                                                                                                                                                                                                                      Generate a liquid chart to visualize a single value as a percentage, such as, the current occupancy rate of a reservoir or the completion percentage of a project.

                                                                                                                                                                                                                                                                                      Try it

                                                                                                                                                                                                                                                                                      The percentage value to display in the liquid chart, should be a number between 0 and 1, where 1 represents 100%. For example, 0.75 represents 75%.

                                                                                                                                                                                                                                                                                        The shape of the liquid chart, can be 'circle', 'rect', 'pin', or 'triangle'. Default is 'circle'.

                                                                                                                                                                                                                                                                                          Set the theme for the chart, optional, default is 'default'.

                                                                                                                                                                                                                                                                                            Set the width of chart, default is 600.

                                                                                                                                                                                                                                                                                              Set the height of chart, default is 400.

                                                                                                                                                                                                                                                                                                Set the title of chart.

                                                                                                                                                                                                                                                                                                    Result:

                                                                                                                                                                                                                                                                                                    generate_mind_map

                                                                                                                                                                                                                                                                                                    Generate a mind map chart to organizes and presents information in a hierarchical structure with branches radiating from a central topic, such as, a diagram showing the relationship between a main topic and its subtopics.

                                                                                                                                                                                                                                                                                                    Try it

                                                                                                                                                                                                                                                                                                    Data for mind map chart, such as, { name: 'main topic', children: [{ name: 'topic 1', children: [{ name:'subtopic 1-1' }] }.

                                                                                                                                                                                                                                                                                                      children

                                                                                                                                                                                                                                                                                                      No items yet. Use the button below to add some.

                                                                                                                                                                                                                                                                                                          Set the theme for the chart, optional, default is 'default'.

                                                                                                                                                                                                                                                                                                            Set the width of chart, default is 600.

                                                                                                                                                                                                                                                                                                              Set the height of chart, default is 400.

                                                                                                                                                                                                                                                                                                                  Result:

                                                                                                                                                                                                                                                                                                                  generate_network_graph

                                                                                                                                                                                                                                                                                                                  Generate a network graph chart to show relationships (edges) between entities (nodes), such as, relationships between people in social networks.

                                                                                                                                                                                                                                                                                                                  Try it

                                                                                                                                                                                                                                                                                                                  Data for network graph chart, such as, { nodes: [{ name: 'node1' }, { name: 'node2' }], edges: [{ source: 'node1', target: 'node2', name: 'edge1' }] }

                                                                                                                                                                                                                                                                                                                  nodes

                                                                                                                                                                                                                                                                                                                        edges

                                                                                                                                                                                                                                                                                                                        No items yet. Use the button below to add some.

                                                                                                                                                                                                                                                                                                                            Set the theme for the chart, optional, default is 'default'.

                                                                                                                                                                                                                                                                                                                              Set the width of chart, default is 600.

                                                                                                                                                                                                                                                                                                                                Set the height of chart, default is 400.

                                                                                                                                                                                                                                                                                                                                    Result:

                                                                                                                                                                                                                                                                                                                                    generate_organization_chart

                                                                                                                                                                                                                                                                                                                                    Generate an organization chart to visualize the hierarchical structure of an organization, such as, a diagram showing the relationship between a CEO and their direct reports.

                                                                                                                                                                                                                                                                                                                                    Try it

                                                                                                                                                                                                                                                                                                                                    Data for organization chart, such as, { name: 'CEO', description: 'Chief Executive Officer', children: [{ name: 'CTO', description: 'Chief Technology Officer', children: [{ name: 'Dev Manager', description: 'Development Manager' }] }] }.

                                                                                                                                                                                                                                                                                                                                        children

                                                                                                                                                                                                                                                                                                                                        No items yet. Use the button below to add some.

                                                                                                                                                                                                                                                                                                                                            Orientation of the organization chart, either horizontal or vertical. Default is vertical, when the level of the chart is more than 3, it is recommended to use horizontal orientation.

                                                                                                                                                                                                                                                                                                                                              Set the theme for the chart, optional, default is 'default'.

                                                                                                                                                                                                                                                                                                                                                Set the width of chart, default is 600.

                                                                                                                                                                                                                                                                                                                                                  Set the height of chart, default is 400.

                                                                                                                                                                                                                                                                                                                                                      Result:

                                                                                                                                                                                                                                                                                                                                                      generate_path_map

                                                                                                                                                                                                                                                                                                                                                      Generate a route map to display the user's planned route, such as travel guide routes.

                                                                                                                                                                                                                                                                                                                                                      Try it

                                                                                                                                                                                                                                                                                                                                                      The map title should not exceed 16 characters. The content should be consistent with the information the map wants to convey and should be accurate, rich, creative, and attractive.

                                                                                                                                                                                                                                                                                                                                                        Routes, each group represents all POIs along a route. For example, [{ "data": ["西安钟楼", "西安大唐不夜城", "西安大雁塔"] }, { "data": ["西安曲江池公园", "西安回民街"] }]

                                                                                                                                                                                                                                                                                                                                                        data

                                                                                                                                                                                                                                                                                                                                                        Routes, each group represents all POIs along a route. For example, [{ "data": ["西安钟楼", "西安大唐不夜城", "西安大雁塔"] }, { "data": ["西安曲江池公园", "西安回民街"] }]

                                                                                                                                                                                                                                                                                                                                                        The route and places along it.

                                                                                                                                                                                                                                                                                                                                                        A list of keywords for the names of points of interest (POIs) in Chinese. These POIs usually contain a group of places with similar locations, so the names should be more descriptive, must adding attributives to indicate that they are different places in the same area, such as "北京市" is better than "北京", "杭州西湖" is better than "西湖"; in addition, if you can determine that a location may appear in multiple areas, you can be more specific, such as "杭州西湖的苏堤春晓" is better than "苏堤春晓". The tool will use these keywords to search for specific POIs and query their detailed data, such as latitude and longitude, location photos, etc. For example, ["西安钟楼", "西安大唐不夜城", "西安大雁塔"].

                                                                                                                                                                                                                                                                                                                                                        data

                                                                                                                                                                                                                                                                                                                                                        A list of keywords for the names of points of interest (POIs) in Chinese. These POIs usually contain a group of places with similar locations, so the names should be more descriptive, must adding attributives to indicate that they are different places in the same area, such as "北京市" is better than "北京", "杭州西湖" is better than "西湖"; in addition, if you can determine that a location may appear in multiple areas, you can be more specific, such as "杭州西湖的苏堤春晓" is better than "苏堤春晓". The tool will use these keywords to search for specific POIs and query their detailed data, such as latitude and longitude, location photos, etc. For example, ["西安钟楼", "西安大唐不夜城", "西安大雁塔"].

                                                                                                                                                                                                                                                                                                                                                                Set the width of map, default is 1600.

                                                                                                                                                                                                                                                                                                                                                                  Set the height of map, default is 1000.

                                                                                                                                                                                                                                                                                                                                                                      Result:

                                                                                                                                                                                                                                                                                                                                                                      generate_pie_chart

                                                                                                                                                                                                                                                                                                                                                                      Generate a pie chart to show the proportion of parts, such as, market share and budget allocation.

                                                                                                                                                                                                                                                                                                                                                                      Try it

                                                                                                                                                                                                                                                                                                                                                                      Data for pie chart, such as, [{ category: '分类一', value: 27 }].

                                                                                                                                                                                                                                                                                                                                                                      data

                                                                                                                                                                                                                                                                                                                                                                      Data for pie chart, such as, [{ category: '分类一', value: 27 }].

                                                                                                                                                                                                                                                                                                                                                                              Set the innerRadius of pie chart, the value between 0 and 1. Set the pie chart as a donut chart. Set the value to 0.6 or number in [0 ,1] to enable it.

                                                                                                                                                                                                                                                                                                                                                                                Set the theme for the chart, optional, default is 'default'.

                                                                                                                                                                                                                                                                                                                                                                                  Set the width of chart, default is 600.

                                                                                                                                                                                                                                                                                                                                                                                    Set the height of chart, default is 400.

                                                                                                                                                                                                                                                                                                                                                                                      Set the title of chart.

                                                                                                                                                                                                                                                                                                                                                                                          Result:

                                                                                                                                                                                                                                                                                                                                                                                          generate_pin_map

                                                                                                                                                                                                                                                                                                                                                                                          Generate a point map to display the location and distribution of point data on the map, such as the location distribution of attractions, hospitals, supermarkets, etc.

                                                                                                                                                                                                                                                                                                                                                                                          Try it

                                                                                                                                                                                                                                                                                                                                                                                          The map title should not exceed 16 characters. The content should be consistent with the information the map wants to convey and should be accurate, rich, creative, and attractive.

                                                                                                                                                                                                                                                                                                                                                                                            A list of keywords for the names of points of interest (POIs) in Chinese. These POIs usually contain a group of places with similar locations, so the names should be more descriptive, must adding attributives to indicate that they are different places in the same area, such as "北京市" is better than "北京", "杭州西湖" is better than "西湖"; in addition, if you can determine that a location may appear in multiple areas, you can be more specific, such as "杭州西湖的苏堤春晓" is better than "苏堤春晓". The tool will use these keywords to search for specific POIs and query their detailed data, such as latitude and longitude, location photos, etc. For example, ["西安钟楼", "西安大唐不夜城", "西安大雁塔"].

                                                                                                                                                                                                                                                                                                                                                                                            data

                                                                                                                                                                                                                                                                                                                                                                                            A list of keywords for the names of points of interest (POIs) in Chinese. These POIs usually contain a group of places with similar locations, so the names should be more descriptive, must adding attributives to indicate that they are different places in the same area, such as "北京市" is better than "北京", "杭州西湖" is better than "西湖"; in addition, if you can determine that a location may appear in multiple areas, you can be more specific, such as "杭州西湖的苏堤春晓" is better than "苏堤春晓". The tool will use these keywords to search for specific POIs and query their detailed data, such as latitude and longitude, location photos, etc. For example, ["西安钟楼", "西安大唐不夜城", "西安大雁塔"].

                                                                                                                                                                                                                                                                                                                                                                                                Marker type, one is simple mode, which is just an icon and does not require `markerPopup` configuration; the other is image mode, which displays location photos and requires `markerPopup` configuration. Among them, `width`/`height`/`borderRadius` can be combined to realize rectangular photos and square photos. In addition, when `borderRadius` is half of the width and height, it can also be a circular photo.

                                                                                                                                                                                                                                                                                                                                                                                                Must be "image".

                                                                                                                                                                                                                                                                                                                                                                                                  Width of the photo.

                                                                                                                                                                                                                                                                                                                                                                                                    Height of the photo.

                                                                                                                                                                                                                                                                                                                                                                                                      Border radius of the photo.

                                                                                                                                                                                                                                                                                                                                                                                                          Set the width of map, default is 1600.

                                                                                                                                                                                                                                                                                                                                                                                                            Set the height of map, default is 1000.

                                                                                                                                                                                                                                                                                                                                                                                                                Result:

                                                                                                                                                                                                                                                                                                                                                                                                                generate_radar_chart

                                                                                                                                                                                                                                                                                                                                                                                                                Generate a radar chart to display multidimensional data (four dimensions or more), such as, evaluate Huawei and Apple phones in terms of five dimensions: ease of use, functionality, camera, benchmark scores, and battery life.

                                                                                                                                                                                                                                                                                                                                                                                                                Try it

                                                                                                                                                                                                                                                                                                                                                                                                                Data for radar chart, such as, [{ name: 'Design', value: 70 }].

                                                                                                                                                                                                                                                                                                                                                                                                                data

                                                                                                                                                                                                                                                                                                                                                                                                                Data for radar chart, such as, [{ name: 'Design', value: 70 }].

                                                                                                                                                                                                                                                                                                                                                                                                                          Set the theme for the chart, optional, default is 'default'.

                                                                                                                                                                                                                                                                                                                                                                                                                            Set the width of chart, default is 600.

                                                                                                                                                                                                                                                                                                                                                                                                                              Set the height of chart, default is 400.

                                                                                                                                                                                                                                                                                                                                                                                                                                Set the title of chart.

                                                                                                                                                                                                                                                                                                                                                                                                                                    Result:

                                                                                                                                                                                                                                                                                                                                                                                                                                    generate_sankey_chart

                                                                                                                                                                                                                                                                                                                                                                                                                                    Generate a sankey chart to visualize the flow of data between different stages or categories, such as, the user journey from landing on a page to completing a purchase.

                                                                                                                                                                                                                                                                                                                                                                                                                                    Try it

                                                                                                                                                                                                                                                                                                                                                                                                                                    Date for sankey chart, such as, [{ source: 'Landing Page', target: 'Product Page', value: 50000 }, { source: 'Product Page', target: 'Add to Cart', value: 35000 }, { source: 'Add to Cart', target: 'Checkout', value: 25000 }, { source: 'Checkout', target: 'Payment', value: 15000 }, { source: 'Payment', target: 'Purchase Completed', value: 8000 }].

                                                                                                                                                                                                                                                                                                                                                                                                                                    data

                                                                                                                                                                                                                                                                                                                                                                                                                                    Date for sankey chart, such as, [{ source: 'Landing Page', target: 'Product Page', value: 50000 }, { source: 'Product Page', target: 'Add to Cart', value: 35000 }, { source: 'Add to Cart', target: 'Checkout', value: 25000 }, { source: 'Checkout', target: 'Payment', value: 15000 }, { source: 'Payment', target: 'Purchase Completed', value: 8000 }].

                                                                                                                                                                                                                                                                                                                                                                                                                                              Alignment of nodes in the sankey chart, such as, 'left', 'right', 'justify', or 'center'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                Set the theme for the chart, optional, default is 'default'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Set the width of chart, default is 600.

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Set the height of chart, default is 400.

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Set the title of chart.

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Result:

                                                                                                                                                                                                                                                                                                                                                                                                                                                          generate_scatter_chart

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Generate a scatter chart to show the relationship between two variables, helps discover their relationship or trends, such as, the strength of correlation, data distribution patterns.

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Try it

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Data for scatter chart, such as, [{ x: 10, y: 15 }].

                                                                                                                                                                                                                                                                                                                                                                                                                                                          data

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Data for scatter chart, such as, [{ x: 10, y: 15 }].

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Set the theme for the chart, optional, default is 'default'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Set the width of chart, default is 600.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Set the height of chart, default is 400.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Set the title of chart.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Set the x-axis title of chart.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Set the y-axis title of chart.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Result:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                generate_treemap_chart

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Generate a treemap chart to display hierarchical data and can intuitively show comparisons between items at the same level, such as, show disk space usage with treemap.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Try it

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Data for treemap chart, such as, [{ name: 'Design', value: 70, children: [{ name: 'Tech', value: 20 }] }].

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                data

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Data for treemap chart, such as, [{ name: 'Design', value: 70, children: [{ name: 'Tech', value: 20 }] }].

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    children

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    No items yet. Use the button below to add some.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Set the theme for the chart, optional, default is 'default'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Set the width of chart, default is 600.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Set the height of chart, default is 400.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Set the title of chart.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Result:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    generate_venn_chart

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Generate a Venn diagram to visualize the relationships between different sets, showing how they intersect and overlap, such as the commonalities and differences between various groups.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Try it

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Data for venn chart, such as, [{ label: 'A', value: 10, sets: ['A'] }, { label: 'B', value: 20, sets: ['B'] }, { label: 'C', value: 30, sets: ['C'] }, { label: 'AB', value: 5, sets: ['A', 'B'] }].

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    data

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Data for venn chart, such as, [{ label: 'A', value: 10, sets: ['A'] }, { label: 'B', value: 20, sets: ['B'] }, { label: 'C', value: 30, sets: ['C'] }, { label: 'AB', value: 5, sets: ['A', 'B'] }].

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Label for the venn chart segment, such as 'A', 'B', or 'C'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Value for the venn chart segment, such as 10, 20, or 30.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Array of set names that this segment belongs to, such as ['A', 'B'] for an intersection between sets A and B.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        sets

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Array of set names that this segment belongs to, such as ['A', 'B'] for an intersection between sets A and B.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        No items yet. Use the button below to add some.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Set the theme for the chart, optional, default is 'default'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Set the width of chart, default is 600.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Set the height of chart, default is 400.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Set the title of chart.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Result:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        generate_violin_chart

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Generate a violin chart to show data for statistical summaries among different categories, such as, comparing the distribution of data points across categories.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Try it

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Data for violin chart, such as, [{ category: '分类一', value: 10 }] or [{ category: '分类二', value: 20, group: '组别一' }].

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        data

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Data for violin chart, such as, [{ category: '分类一', value: 10 }] or [{ category: '分类二', value: 20, group: '组别一' }].

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Category of the data point, such as '分类一'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Value of the data point, such as 10.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Optional group for the data point, used for grouping in the violin chart.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Set the theme for the chart, optional, default is 'default'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Set the width of chart, default is 600.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Set the height of chart, default is 400.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Set the title of chart.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Set the x-axis title of chart.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Set the y-axis title of chart.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Result:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                generate_word_cloud_chart

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Generate a word cloud chart to show word frequency or weight through text size variation, such as, analyzing common words in social media, reviews, or feedback.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Try it

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Data for word cloud chart, such as, [{ value: 4.272, text: '形成' }].

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                data

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Data for word cloud chart, such as, [{ value: 4.272, text: '形成' }].

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Set the theme for the chart, optional, default is 'default'.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Set the width of chart, default is 600.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Set the height of chart, default is 400.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Set the title of chart.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Result: