{"id":1363,"date":"2026-07-27T02:28:09","date_gmt":"2026-07-27T02:28:09","guid":{"rendered":"https:\/\/www.vpascode.com\/ja\/docs\/uncategorized\/echarts-playbook\/parallel-chart-multi-dimensional-data-analysis\/"},"modified":"2026-07-30T01:28:15","modified_gmt":"2026-07-30T01:28:15","slug":"parallel-chart-multi-dimensional-data-analysis-guide","status":"publish","type":"ld_docs","link":"https:\/\/www.vpascode.com\/ja\/docs\/vpascode-docs\/echarts-playbook\/parallel-chart-multi-dimensional-data-analysis-guide\/","title":{"rendered":"Parallel Chart: Multi-Dimensional Data Analysis"},"content":{"rendered":"<p>When comparing multivariate data points across many numerical or categorical axes simultaneously, the <strong>Parallel Coordinates Chart<\/strong> is an essential visual tool. Instead of mapping coordinates to perpendicular horizontal and vertical axes, parallel plots place all dimensions side-by-side as parallel lines. Individual data entries are rendered as continuous polyline paths intersecting each axis, making it easy to identify <em>multi-attribute clusters, trade-offs, correlations, and outliers<\/em>\u2014such as comparing car models across horsepower, weight, fuel efficiency, price, and safety rating.<\/p>\n<h2>The Mechanics of Parallel Charts<\/h2>\n<p>In Apache ECharts, parallel coordinates plots rely on a dedicated <code>parallelAxis<\/code> configuration block that defines each parallel scale (its axis index, dimension name, and data type). The chart series sets <code>type: 'parallel'<\/code> and maps rows of multi-element value arrays to each corresponding axis index.<\/p>\n<h3>1. Essential Setup<\/h3>\n<p>To construct a basic parallel chart, define your dimensions in the <code>parallelAxis<\/code> array and pass corresponding coordinate arrays inside your series <code>data<\/code>:<\/p>\n            <div class=\"vpascode-viewer-container vpascode-fancy-active\">\r\n                                <div class=\"vpascode-header\">\r\n                    <span class=\"vpascode-lang-label\">ECharts<\/span>\r\n                    <a href=\"https:\/\/www.vpascode.com\/#echarts:eNpt0MGKgzAQBuB7oe8wh4IuBEnSCurSQ289lvawh9JDWIMdNlWxgbYU370ZXO3q5j+Ims\/fSaraYlXCGp7zGbjUqlHGaLO54zWDY\/eS8oQcLxlwBqW66AyCXYPfGsLFRwAt++fE4PbKYll4kRzQl8bibCH8Kfx1y\/dvq5tuINzuCHbu9OuvukE9mfp9S7GPmjr6TQZsvGyw1Af7MM5MPqTcMLdnN\/R4pZ105Mqq0Qh9jkKmKYNVFDMQkdu6kPzEPC7pGCfmbBp7lYg7lhBzpy1if9uK2JKKJFUmfiUF59TmLKeLcG7M\/jz2xz6ftZ8vzO10Sw==\" \r\n                       target=\"_blank\" \r\n                       rel=\"noopener noreferrer\" \r\n                       class=\"vpascode-fancy-btn\">\r\n                        <svg width=\"14\" height=\"14\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" style=\"margin-right: 8px;\"><path d=\"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7\"><\/path><path d=\"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z\"><\/path><\/svg>\r\n                        <span>Edit ECharts in VPasCode<\/span>\r\n                    <\/a>\r\n                <\/div>\r\n                                <div class=\"vpascode-code-wrapper\">\r\n                    <pre class=\"lang-echarts\"><code data-language=\"echarts\" class=\"language-echarts\">option = {\r\n    parallelAxis: [\r\n        { dim: 0, name: 'Price ($)' },\r\n        { dim: 1, name: 'Rating' },\r\n        { dim: 2, name: 'Weight (kg)' },\r\n        { dim: 3, name: 'Power (HP)' }\r\n    ],\r\n    series: [\r\n        {\r\n            type: 'parallel',\r\n            lineStyle: {\r\n                width: 2\r\n            },\r\n            data: [\r\n                [1299, 4.5, 1.2, 120],\r\n                [899, 4.0, 1.5, 95],\r\n                [1599, 4.8, 1.1, 150],\r\n                [499, 3.5, 2.0, 80],\r\n                [2100, 4.9, 0.9, 180]\r\n            ]\r\n        }\r\n    ]\r\n};<\/code><\/pre>                <\/div>\r\n                <div class=\"vpascode-actions\">\r\n                    <a href=\"https:\/\/www.vpascode.com\/#echarts:eNpt0MGKgzAQBuB7oe8wh4IuBEnSCurSQ289lvawh9JDWIMdNlWxgbYU370ZXO3q5j+Ims\/fSaraYlXCGp7zGbjUqlHGaLO54zWDY\/eS8oQcLxlwBqW66AyCXYPfGsLFRwAt++fE4PbKYll4kRzQl8bibCH8Kfx1y\/dvq5tuINzuCHbu9OuvukE9mfp9S7GPmjr6TQZsvGyw1Af7MM5MPqTcMLdnN\/R4pZ105Mqq0Qh9jkKmKYNVFDMQkdu6kPzEPC7pGCfmbBp7lYg7lhBzpy1if9uK2JKKJFUmfiUF59TmLKeLcG7M\/jz2xz6ftZ8vzO10Sw==\" \r\n                       target=\"_blank\" \r\n                       rel=\"noopener noreferrer\" \r\n                       class=\"vpascode-fancy-btn\">\r\n                        <svg width=\"14\" height=\"14\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" style=\"margin-right: 6px;\"><path d=\"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7\"><\/path><path d=\"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z\"><\/path><\/svg>\r\n                        <span>Edit ECharts in VPasCode<\/span>\r\n                    <\/a>\r\n                <\/div>\r\n            <\/div>\r\n            \n<p id=\"vaHmBaU\"><img fetchpriority=\"high\" decoding=\"async\" width=\"2081\" height=\"1354\" class=\"alignnone size-full wp-image-1364 \" src=\"https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2aa66c01.png\" alt=\"\" srcset=\"https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2aa66c01.png 2081w, https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2aa66c01-300x195.png 300w, https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2aa66c01-1024x666.png 1024w, https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2aa66c01-768x500.png 768w, https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2aa66c01-1536x999.png 1536w, https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2aa66c01-2048x1333.png 2048w\" sizes=\"(max-width: 2081px) 100vw, 2081px\" \/><\/p>\n<p>&nbsp;<\/p>\n<h2>Advanced Structural Techniques<\/h2>\n<p>Parallel charts can be combined with visual color gradients or mixed categorical scales to evaluate complex trade-offs across distinct product categories.<\/p>\n<h3>1. Visual Map Color Gradients Across Dimensions<\/h3>\n<p>Pair a <code>visualMap<\/code> component with a key axis dimension (e.g., mapping line color to performance ratings) to instantly highlight top-tier performers across all parallel axes:<\/p>\n            <div class=\"vpascode-viewer-container vpascode-fancy-active\">\r\n                                <div class=\"vpascode-header\">\r\n                    <span class=\"vpascode-lang-label\">ECharts<\/span>\r\n                    <a href=\"https:\/\/www.vpascode.com\/#echarts:eNp1U1FvmzAQfq\/U\/3BSV0Ek1EISMsa0h64P3cMiTen6FOXBhWuwZGyEnSVZlf++M4TMJPQkJHP3+fs+39mqMlxJ+Abv11dAUbGaCYHiYcd1Css2aeMdcl6mEAYgWYkpeI+\/XuBR1ag9OAQXuOiEWzzMwX\/6PhqEjU+wZ6Nqtkbwf38AnZygcyVNIfakrg34n0ZeACWXjbeS7Yg0DOHQ7l8def5wvWFizqq0O6gNXahtCqbeoCNn9pUVyUiEy43aaM8pHnWcxFHQSZFblJq62ni+vyefQtUguERqryk0vDKNOVDbT1DgMscdTMB3Dzf6T8rlgsk19uzbyCw3Dcq7+RJl2eeYeuHdvLEsiZNmiTij8FbWx1ONKMH\/qbYtOxgFCzLi\/+Dr4lzQnYCqOUpDTSlo9ZcMMuE2xShqqze+dXMC3+yGjPZh7bX5jrK7Y73DtCRR0mN5Vcao0ubD2zMSjWTq7Ir2W3McZKfm8jYOaR7PZi8ue2pjy3NT2AFellTFMm72dA\/ukn71cIbOmWE9h10spwEkARHEAYzj1YDIksrRjL47utVxOAix9Qm9oLHFRNEwyAJmJDdtQMmwWGRZplaNDCXhqg9xfrtndX11+PoPeIHxow==\" \r\n                       target=\"_blank\" \r\n                       rel=\"noopener noreferrer\" \r\n                       class=\"vpascode-fancy-btn\">\r\n                        <svg width=\"14\" height=\"14\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" style=\"margin-right: 8px;\"><path d=\"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7\"><\/path><path d=\"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z\"><\/path><\/svg>\r\n                        <span>Edit ECharts in VPasCode<\/span>\r\n                    <\/a>\r\n                <\/div>\r\n                                <div class=\"vpascode-code-wrapper\">\r\n                    <pre class=\"lang-echarts\"><code data-language=\"echarts\" class=\"language-echarts\">option = {\r\n    parallelAxis: [\r\n        { dim: 0, name: 'CPU Cores' },\r\n        { dim: 1, name: 'RAM (GB)' },\r\n        { dim: 2, name: 'Storage (TB)' },\r\n        { dim: 3, name: 'Monthly Cost ($)', min: 0, max: 200 }\r\n    ],\r\n    visualMap: {\r\n        show: true,\r\n        type: 'continuous',\r\n        min: 0,\r\n        max: 200,\r\n        dimension: 3, \/\/ Color line paths based on dimension index 3 (Monthly Cost)\r\n        inRange: {\r\n            color: ['#91cc75', '#fac858', '#ee6666'] \/\/ Green (Low Cost) to Red (High Cost)\r\n        },\r\n        orient: 'horizontal',\r\n        top: '2%',\r\n        left: 'center'\r\n    },\r\n    parallel: {\r\n        top: '18%',\r\n        bottom: '10%'\r\n    },\r\n    series: [\r\n        {\r\n            type: 'parallel',\r\n            lineStyle: {\r\n                width: 3,\r\n                opacity: 0.8\r\n            },\r\n            data: [\r\n                [4, 8, 0.5, 25],\r\n                [8, 16, 1.0, 50],\r\n                [16, 32, 2.0, 110],\r\n                [32, 64, 4.0, 185],\r\n                [12, 24, 1.5, 80]\r\n            ]\r\n        }\r\n    ]\r\n};<\/code><\/pre>                <\/div>\r\n                <div class=\"vpascode-actions\">\r\n                    <a href=\"https:\/\/www.vpascode.com\/#echarts:eNp1U1FvmzAQfq\/U\/3BSV0Ek1EISMsa0h64P3cMiTen6FOXBhWuwZGyEnSVZlf++M4TMJPQkJHP3+fs+39mqMlxJ+Abv11dAUbGaCYHiYcd1Css2aeMdcl6mEAYgWYkpeI+\/XuBR1ag9OAQXuOiEWzzMwX\/6PhqEjU+wZ6Nqtkbwf38AnZygcyVNIfakrg34n0ZeACWXjbeS7Yg0DOHQ7l8def5wvWFizqq0O6gNXahtCqbeoCNn9pUVyUiEy43aaM8pHnWcxFHQSZFblJq62ni+vyefQtUguERqryk0vDKNOVDbT1DgMscdTMB3Dzf6T8rlgsk19uzbyCw3Dcq7+RJl2eeYeuHdvLEsiZNmiTij8FbWx1ONKMH\/qbYtOxgFCzLi\/+Dr4lzQnYCqOUpDTSlo9ZcMMuE2xShqqze+dXMC3+yGjPZh7bX5jrK7Y73DtCRR0mN5Vcao0ubD2zMSjWTq7Ir2W3McZKfm8jYOaR7PZi8ue2pjy3NT2AFellTFMm72dA\/ukn71cIbOmWE9h10spwEkARHEAYzj1YDIksrRjL47utVxOAix9Qm9oLHFRNEwyAJmJDdtQMmwWGRZplaNDCXhqg9xfrtndX11+PoPeIHxow==\" \r\n                       target=\"_blank\" \r\n                       rel=\"noopener noreferrer\" \r\n                       class=\"vpascode-fancy-btn\">\r\n                        <svg width=\"14\" height=\"14\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" style=\"margin-right: 6px;\"><path d=\"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7\"><\/path><path d=\"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z\"><\/path><\/svg>\r\n                        <span>Edit ECharts in VPasCode<\/span>\r\n                    <\/a>\r\n                <\/div>\r\n            <\/div>\r\n            \n<p id=\"nHuiVZH\"><img decoding=\"async\" width=\"2123\" height=\"1333\" class=\"alignnone size-full wp-image-1366 \" src=\"https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2b579ad7.png\" alt=\"\" srcset=\"https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2b579ad7.png 2123w, https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2b579ad7-300x188.png 300w, https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2b579ad7-1024x643.png 1024w, https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2b579ad7-768x482.png 768w, https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2b579ad7-1536x964.png 1536w, https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2b579ad7-2048x1286.png 2048w\" sizes=\"(max-width: 2123px) 100vw, 2123px\" \/><\/p>\n<p>&nbsp;<\/p>\n<h2>Fine-Tuning Layout and Interactive Filtering<\/h2>\n<p>Adding smooth curves and line opacity prevents dense, crisscrossing data threads from overwhelming the user interface.<\/p>\n<h3>1. Smooth Curve Paths and Low-Opacity Threads<\/h3>\n<p>Set <code>smooth: true<\/code> and lower line opacity to make high-density data overlaps and clusters naturally visible:<\/p>\n            <div class=\"vpascode-viewer-container vpascode-fancy-active\">\r\n                                <div class=\"vpascode-header\">\r\n                    <span class=\"vpascode-lang-label\">ECharts<\/span>\r\n                    <a href=\"https:\/\/www.vpascode.com\/#echarts:eNptks9uwjAMxu9IvIOlaeJSjRb6J+20A2N7Ao6IQ1bCiJQ2VZqyIcS7z6arRrNYqpLav3z5HFk3VuoaXuAynQBGww1XSqjVt2wL2PZJigvsZVVAGEDNK1HAbFNqI2A1g2vwj4oc6tVLLRxq7aWWDvXmpWKHekeqh3bBuLNiaJVCiYPFM1H4OLvTNPLz6El\/aGt1RfnFKG9185vsc4O9VhgpnFf8295OnhuyPFi7F70JVFrbYwHWdCKA+RzWnTmJFpSsBfZjjy0ctIFSCV4LAyfZdly1Yw1iN\/asROFeTlFqpQ06eEjiLCxT1wDFl9yTh4WnpBteSnvGqXiKk3H56uB7bvnoJYbYsiSAHEchY7jieDG281y1zbCUIspwzQhPvFhOCOsV8xS\/2IulpIJoimhKaqEXY4MnUs1xH\/m9IcZIJe79seVuTN39DlM5nVyffwA+4brA\" \r\n                       target=\"_blank\" \r\n                       rel=\"noopener noreferrer\" \r\n                       class=\"vpascode-fancy-btn\">\r\n                        <svg width=\"14\" height=\"14\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" style=\"margin-right: 8px;\"><path d=\"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7\"><\/path><path d=\"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z\"><\/path><\/svg>\r\n                        <span>Edit ECharts in VPasCode<\/span>\r\n                    <\/a>\r\n                <\/div>\r\n                                <div class=\"vpascode-code-wrapper\">\r\n                    <pre class=\"lang-echarts\"><code data-language=\"echarts\" class=\"language-echarts\">option = {\r\n    parallelAxis: [\r\n        { dim: 0, name: 'Score A' },\r\n        { dim: 1, name: 'Score B' },\r\n        { dim: 2, name: 'Score C' },\r\n        { dim: 3, name: 'Score D' },\r\n        { dim: 4, name: 'Score E' }\r\n    ],\r\n    parallel: {\r\n        left: '10%',\r\n        right: '10%',\r\n        bottom: '12%',\r\n        top: '12%'\r\n    },\r\n    series: [\r\n        {\r\n            type: 'parallel',\r\n            smooth: true, \/\/ Curves line paths for cleaner visuals\r\n            lineStyle: {\r\n                color: '#5470c6',\r\n                width: 2,\r\n                opacity: 0.45\r\n            },\r\n            data: [\r\n                [85, 92, 78, 90, 88],\r\n                [70, 65, 80, 72, 75],\r\n                [95, 88, 92, 96, 94],\r\n                [60, 75, 68, 62, 70],\r\n                [88, 90, 85, 89, 91],\r\n                [78, 82, 74, 80, 83]\r\n            ]\r\n        }\r\n    ]\r\n};<\/code><\/pre>                <\/div>\r\n                <div class=\"vpascode-actions\">\r\n                    <a href=\"https:\/\/www.vpascode.com\/#echarts:eNptks9uwjAMxu9IvIOlaeJSjRb6J+20A2N7Ao6IQ1bCiJQ2VZqyIcS7z6arRrNYqpLav3z5HFk3VuoaXuAynQBGww1XSqjVt2wL2PZJigvsZVVAGEDNK1HAbFNqI2A1g2vwj4oc6tVLLRxq7aWWDvXmpWKHekeqh3bBuLNiaJVCiYPFM1H4OLvTNPLz6El\/aGt1RfnFKG9185vsc4O9VhgpnFf8295OnhuyPFi7F70JVFrbYwHWdCKA+RzWnTmJFpSsBfZjjy0ctIFSCV4LAyfZdly1Yw1iN\/asROFeTlFqpQ06eEjiLCxT1wDFl9yTh4WnpBteSnvGqXiKk3H56uB7bvnoJYbYsiSAHEchY7jieDG281y1zbCUIspwzQhPvFhOCOsV8xS\/2IulpIJoimhKaqEXY4MnUs1xH\/m9IcZIJe79seVuTN39DlM5nVyffwA+4brA\" \r\n                       target=\"_blank\" \r\n                       rel=\"noopener noreferrer\" \r\n                       class=\"vpascode-fancy-btn\">\r\n                        <svg width=\"14\" height=\"14\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\" style=\"margin-right: 6px;\"><path d=\"M11 4H4a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7\"><\/path><path d=\"M18.5 2.5a2.121 2.121 0 0 1 3 3L12 15l-4 1 1-4 9.5-9.5z\"><\/path><\/svg>\r\n                        <span>Edit ECharts in VPasCode<\/span>\r\n                    <\/a>\r\n                <\/div>\r\n            <\/div>\r\n            \n<p id=\"ZkhDwwG\"><img decoding=\"async\" width=\"1944\" height=\"1236\" class=\"alignnone size-full wp-image-1367 \" src=\"https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2c297ff3.png\" alt=\"\" srcset=\"https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2c297ff3.png 1944w, https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2c297ff3-300x191.png 300w, https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2c297ff3-1024x651.png 1024w, https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2c297ff3-768x488.png 768w, https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2c297ff3-1536x977.png 1536w\" sizes=\"(max-width: 1944px) 100vw, 1944px\" \/><\/p>\n<p>&nbsp;<\/p>\n<h2>Strategic Best Practices<\/h2>\n<ul>\n<li><strong>Arrange Axes Thoughtfully:<\/strong> Place strongly correlated or directly comparable metrics on adjacent axes so relationships and cross-over trends are easier to spot.<\/li>\n<li><strong>Use Lower Opacity for High Data Volume:<\/strong> When plotting dozens or hundreds of lines, reduce <code>lineStyle.opacity<\/code> to <code>0.2<\/code>\u2013<code>0.5<\/code> so overlapping trends create darker, high-density bands naturally.<\/li>\n<li><strong>Enable <code>smooth: true<\/code> for Complex Datasets:<\/strong> Applying subtle curvature to line paths reduces sharp visual angles when threads cross multiple parallel axes in quick succession.<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>When comparing multivariate data points &#8230;<\/p>\n","protected":false},"author":3,"featured_media":0,"parent":1254,"menu_order":19,"template":"","meta":{"inline_featured_image":false,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"default","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}}},"ld_collection":[14],"class_list":["post-1363","ld_docs","type-ld_docs","status-publish","hentry","ld_collection-vpascode-docs"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>ECharts Parallel Chart Guide | VPasCode Text to Diagram Guide<\/title>\n<meta name=\"description\" content=\"Plot multi-dimensional feature comparison charts with ECharts parallel coordinates in VPasCode, a text to diagram tool.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.vpascode.com\/ja\/docs\/vpascode-docs\/echarts-playbook\/parallel-chart-multi-dimensional-data-analysis-guide\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ECharts Parallel Chart Guide | VPasCode Text to Diagram Guide\" \/>\n<meta property=\"og:description\" content=\"Plot multi-dimensional feature comparison charts with ECharts parallel coordinates in VPasCode, a text to diagram tool.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.vpascode.com\/ja\/docs\/vpascode-docs\/echarts-playbook\/parallel-chart-multi-dimensional-data-analysis-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"VPasCode\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-30T01:28:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2aa66c01.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data1\" content=\"2\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/docs\\\/vpascode-docs\\\/echarts-playbook\\\/parallel-chart-multi-dimensional-data-analysis-guide\\\/\",\"url\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/docs\\\/vpascode-docs\\\/echarts-playbook\\\/parallel-chart-multi-dimensional-data-analysis-guide\\\/\",\"name\":\"ECharts Parallel Chart Guide | VPasCode Text to Diagram Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/docs\\\/vpascode-docs\\\/echarts-playbook\\\/parallel-chart-multi-dimensional-data-analysis-guide\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/docs\\\/vpascode-docs\\\/echarts-playbook\\\/parallel-chart-multi-dimensional-data-analysis-guide\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/wp-content\\\/uploads\\\/sites\\\/8\\\/2026\\\/07\\\/img_6a66c2aa66c01.png\",\"datePublished\":\"2026-07-27T02:28:09+00:00\",\"dateModified\":\"2026-07-30T01:28:15+00:00\",\"description\":\"Plot multi-dimensional feature comparison charts with ECharts parallel coordinates in VPasCode, a text to diagram tool.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/docs\\\/vpascode-docs\\\/echarts-playbook\\\/parallel-chart-multi-dimensional-data-analysis-guide\\\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/docs\\\/vpascode-docs\\\/echarts-playbook\\\/parallel-chart-multi-dimensional-data-analysis-guide\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/docs\\\/vpascode-docs\\\/echarts-playbook\\\/parallel-chart-multi-dimensional-data-analysis-guide\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/wp-content\\\/uploads\\\/sites\\\/8\\\/2026\\\/07\\\/img_6a66c2aa66c01.png\",\"contentUrl\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/wp-content\\\/uploads\\\/sites\\\/8\\\/2026\\\/07\\\/img_6a66c2aa66c01.png\",\"width\":2081,\"height\":1354},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/docs\\\/vpascode-docs\\\/echarts-playbook\\\/parallel-chart-multi-dimensional-data-analysis-guide\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Lean Docs\",\"item\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/docs\\\/%ld_collection%\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"ECharts Playbook\",\"item\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/docs\\\/vpascode-docs\\\/echarts-playbook\\\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Parallel Chart: Multi-Dimensional Data Analysis\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/#website\",\"url\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/\",\"name\":\"VPasCode\",\"description\":\"by Visual Paradigm\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ja\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/#organization\",\"name\":\"VPasCode\",\"url\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/wp-content\\\/uploads\\\/sites\\\/8\\\/2026\\\/06\\\/cropped-vp-online-logo-v1.png\",\"contentUrl\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/wp-content\\\/uploads\\\/sites\\\/8\\\/2026\\\/06\\\/cropped-vp-online-logo-v1.png\",\"width\":128,\"height\":138,\"caption\":\"VPasCode\"},\"image\":{\"@id\":\"https:\\\/\\\/www.vpascode.com\\\/ja\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"ECharts Parallel Chart Guide | VPasCode Text to Diagram Guide","description":"Plot multi-dimensional feature comparison charts with ECharts parallel coordinates in VPasCode, a text to diagram tool.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.vpascode.com\/ja\/docs\/vpascode-docs\/echarts-playbook\/parallel-chart-multi-dimensional-data-analysis-guide\/","og_locale":"ja_JP","og_type":"article","og_title":"ECharts Parallel Chart Guide | VPasCode Text to Diagram Guide","og_description":"Plot multi-dimensional feature comparison charts with ECharts parallel coordinates in VPasCode, a text to diagram tool.","og_url":"https:\/\/www.vpascode.com\/ja\/docs\/vpascode-docs\/echarts-playbook\/parallel-chart-multi-dimensional-data-analysis-guide\/","og_site_name":"VPasCode","article_modified_time":"2026-07-30T01:28:15+00:00","og_image":[{"url":"https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2aa66c01.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"2\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.vpascode.com\/ja\/docs\/vpascode-docs\/echarts-playbook\/parallel-chart-multi-dimensional-data-analysis-guide\/","url":"https:\/\/www.vpascode.com\/ja\/docs\/vpascode-docs\/echarts-playbook\/parallel-chart-multi-dimensional-data-analysis-guide\/","name":"ECharts Parallel Chart Guide | VPasCode Text to Diagram Guide","isPartOf":{"@id":"https:\/\/www.vpascode.com\/ja\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.vpascode.com\/ja\/docs\/vpascode-docs\/echarts-playbook\/parallel-chart-multi-dimensional-data-analysis-guide\/#primaryimage"},"image":{"@id":"https:\/\/www.vpascode.com\/ja\/docs\/vpascode-docs\/echarts-playbook\/parallel-chart-multi-dimensional-data-analysis-guide\/#primaryimage"},"thumbnailUrl":"https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2aa66c01.png","datePublished":"2026-07-27T02:28:09+00:00","dateModified":"2026-07-30T01:28:15+00:00","description":"Plot multi-dimensional feature comparison charts with ECharts parallel coordinates in VPasCode, a text to diagram tool.","breadcrumb":{"@id":"https:\/\/www.vpascode.com\/ja\/docs\/vpascode-docs\/echarts-playbook\/parallel-chart-multi-dimensional-data-analysis-guide\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.vpascode.com\/ja\/docs\/vpascode-docs\/echarts-playbook\/parallel-chart-multi-dimensional-data-analysis-guide\/"]}]},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.vpascode.com\/ja\/docs\/vpascode-docs\/echarts-playbook\/parallel-chart-multi-dimensional-data-analysis-guide\/#primaryimage","url":"https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2aa66c01.png","contentUrl":"https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/07\/img_6a66c2aa66c01.png","width":2081,"height":1354},{"@type":"BreadcrumbList","@id":"https:\/\/www.vpascode.com\/ja\/docs\/vpascode-docs\/echarts-playbook\/parallel-chart-multi-dimensional-data-analysis-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.vpascode.com\/ja\/"},{"@type":"ListItem","position":2,"name":"Lean Docs","item":"https:\/\/www.vpascode.com\/ja\/docs\/%ld_collection%\/"},{"@type":"ListItem","position":3,"name":"ECharts Playbook","item":"https:\/\/www.vpascode.com\/ja\/docs\/vpascode-docs\/echarts-playbook\/"},{"@type":"ListItem","position":4,"name":"Parallel Chart: Multi-Dimensional Data Analysis"}]},{"@type":"WebSite","@id":"https:\/\/www.vpascode.com\/ja\/#website","url":"https:\/\/www.vpascode.com\/ja\/","name":"VPasCode","description":"by Visual Paradigm","publisher":{"@id":"https:\/\/www.vpascode.com\/ja\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.vpascode.com\/ja\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ja"},{"@type":"Organization","@id":"https:\/\/www.vpascode.com\/ja\/#organization","name":"VPasCode","url":"https:\/\/www.vpascode.com\/ja\/","logo":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.vpascode.com\/ja\/#\/schema\/logo\/image\/","url":"https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/06\/cropped-vp-online-logo-v1.png","contentUrl":"https:\/\/www.vpascode.com\/ja\/wp-content\/uploads\/sites\/8\/2026\/06\/cropped-vp-online-logo-v1.png","width":128,"height":138,"caption":"VPasCode"},"image":{"@id":"https:\/\/www.vpascode.com\/ja\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.vpascode.com\/ja\/wp-json\/wp\/v2\/ld_docs\/1363","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.vpascode.com\/ja\/wp-json\/wp\/v2\/ld_docs"}],"about":[{"href":"https:\/\/www.vpascode.com\/ja\/wp-json\/wp\/v2\/types\/ld_docs"}],"author":[{"embeddable":true,"href":"https:\/\/www.vpascode.com\/ja\/wp-json\/wp\/v2\/users\/3"}],"up":[{"embeddable":true,"href":"https:\/\/www.vpascode.com\/ja\/wp-json\/wp\/v2\/ld_docs\/1254"}],"wp:attachment":[{"href":"https:\/\/www.vpascode.com\/ja\/wp-json\/wp\/v2\/media?parent=1363"}],"wp:term":[{"taxonomy":"ld_collection","embeddable":true,"href":"https:\/\/www.vpascode.com\/ja\/wp-json\/wp\/v2\/ld_collection?post=1363"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}