{"id":6090,"date":"2026-07-03T05:57:11","date_gmt":"2026-07-03T05:57:11","guid":{"rendered":"https:\/\/www.croatiarentalcars.com\/croatiarentalcars-new\/?post_type=chart&#038;p=6090"},"modified":"2026-07-17T04:43:38","modified_gmt":"2026-07-17T04:43:38","slug":"most-booked-car-models-7","status":"publish","type":"chart","link":"https:\/\/www.croatiarentalcars.com\/croatiarentalcars-new\/chart\/most-booked-car-models-7\/","title":{"rendered":"Most Booked Car Models"},"content":{"rendered":"\n<div class=\"wp-block-group month-chart has-background has-global-padding is-layout-constrained wp-container-core-group-is-layout-79778dfd wp-block-group-is-layout-constrained\" style=\"border-top-left-radius:10px;border-top-right-radius:10px;border-bottom-left-radius:10px;border-bottom-right-radius:10px;background-color:#f2f7ff;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\n<h2 class=\"wp-block-heading\" style=\"font-size:clamp(14px, 0.875rem + ((1vw - 3.2px) * 0.6), 20px);\">Which car models are most booked at Dubrovnik Airport?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The most frequently booked rental cars at DBV Airport are compact and economy models such as the Volkswagen Polo, Fiat 500, and Peugeot 208, as they are the most convenient for driving as well as parking in city centre and nearby busy hubs.<\/p>\n\n\n\t<style>\n\t\t.vip-chart-main {\n\t\t\tbackground: transparent;\n\t\t\tborder-radius: 10px;\n\t\t\tpadding:0px;\n\t\t}\n\t\t@media (max-width: 767px) {\n\t\t\t.vip-chart-main > div {\n\t\t\t\tmargin-left: 0 !important;\n\t\t\t\twidth: 100% !important;\n\t\t\t}\n\t\t}\n\t<\/style>\n    <div style=\"width:100%;\" class=\"vip-chart-main\">\n\t\t<div id=\"vip-chart-6ab054b7a7433\" style=\"width:calc(100%); height: 350px; padding:0;\"><\/div>\n\t<\/div>\n\n    <script>\n\tdocument.addEventListener(\"DOMContentLoaded\", function() {\n\t\tvar chart = echarts.init(document.getElementById('vip-chart-6ab054b7a7433'));\n\t\t\n\t\t        \n            const xData = [\"Volkswagen Polo\",\"Opel\\\/Vauxhall Corsa\",\"Renault Clio\",\"Fiat 500\",\"Volkswagen T-Cross\",\"Peugeot 2008\",\"Renault Captur\",\"Volkswagen Up\"];\n            const yData = [{\"name\":\"Volkswagen Polo\",\"value\":20,\"itemStyle\":{\"color\":\"#1D4ED8\"}},{\"name\":\"Opel\\\/Vauxhall Corsa\",\"value\":16,\"itemStyle\":{\"color\":\"#1D4ED8\"}},{\"name\":\"Renault Clio\",\"value\":16,\"itemStyle\":{\"color\":\"#1D4ED8\"}},{\"name\":\"Fiat 500\",\"value\":14,\"itemStyle\":{\"color\":\"#1D4ED8\"}},{\"name\":\"Volkswagen T-Cross\",\"value\":10,\"itemStyle\":{\"color\":\"#1D4ED8\"}},{\"name\":\"Peugeot 2008\",\"value\":9,\"itemStyle\":{\"color\":\"#1D4ED8\"}},{\"name\":\"Renault Captur\",\"value\":8,\"itemStyle\":{\"color\":\"#1D4ED8\"}},{\"name\":\"Volkswagen Up\",\"value\":7,\"itemStyle\":{\"color\":\"#1D4ED8\"}}];\n            \/\/ Custom colors\n            const colors = ['#1D4ED8','#F97316','#FB7E62','#FFD3C9','#6B6B6B','#979798','#B5C9FF','#4978FD'];\n            \n            \/\/ Convert to pie format\n            const pieData = [];\n            for (let i = 0; i < xData.length; i++) {\n              pieData.push({\n                value: Number(yData[i]?.value) || 0,  \n                name: String(xData[i]),\n                itemStyle: {\n                  color: colors[i % colors.length]\n                }\n              });\n            }\n            \n            var option = {\n              baseOption: {\n                tooltip: {\n                    trigger: 'item',\n                    backgroundColor: '#1f2a44',\n                    borderWidth: 0,\n                    textStyle: {\n                      color: '#fff',\n                      fontSize: 12\n                    },\n                    formatter: function (p) {\n                      return `<b>${p.name}<\/b><br\/>${p.value}%`;\n                    }\n                },\n                legend: {\n                    orient: 'vertical',\n                    left: '8%',\n                    top: 'middle',\n                    icon: 'circle',\n                    itemGap: 12,\n                    width: 50,\n                    textStyle: {\n                      fontSize: 13,\n                      color: '#313131'\n                    },\n                    formatter: function (name) {\n                      const item = pieData.find(d => d.name === name);\n                      return `${name}: ${item ? item.value : 0}%`;\n                    }\n                },\n                 series: [\n                    {\n                      type: 'pie',\n                      radius: ['50%', '80%'], \/\/thinner donut\n                      center: ['80%', '50%'],\n                      avoidLabelOverlap: false,\n                      itemStyle: {\n                        borderColor: '#fff',\n                        borderWidth: 2\n                      },\n                      label: {\n                        show: false,\n                        position: 'center'\n                      },\n                      emphasis: {\n                        label: {\n                          show: true,\n                          fontSize: 18,\n                          fontWeight: 'bold'\n                        }\n                      },\n                      labelLine: {\n                        show: false\n                      },\n                      data: pieData\n                    }\n                ],\n                \n                \n              },\n            };\n        \n\t\tchart.setOption(option);\n\t\t\n\t\t\/\/ Window resize\n\t\twindow.addEventListener('resize', function() {\n\t\t\tchart.resize();\n\t\t});\n\n\t\t\/\/ Container resize (modern fix)\n\t\tif (typeof ResizeObserver !== 'undefined') {\n\t\t\tvar resizeObserver = new ResizeObserver(function() {\n\t\t\t\tchart.resize();\n\t\t\t});\n\t\t}\n\t});\n\t<\/script>\n    <\/div>\n","protected":false},"excerpt":{"rendered":"<p>Which car models are most booked at Dubrovnik Airport? The most frequently booked rental cars at DBV Airport are compact and economy models such as the Volkswagen Polo, Fiat 500, and Peugeot 208, as they are the most convenient for driving as well as parking in city centre and nearby busy hubs.<\/p>\n","protected":false},"featured_media":0,"template":"","chart_cat":[],"class_list":["post-6090","chart","type-chart","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/www.croatiarentalcars.com\/croatiarentalcars-new\/wp-json\/wp\/v2\/chart\/6090","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.croatiarentalcars.com\/croatiarentalcars-new\/wp-json\/wp\/v2\/chart"}],"about":[{"href":"https:\/\/www.croatiarentalcars.com\/croatiarentalcars-new\/wp-json\/wp\/v2\/types\/chart"}],"wp:attachment":[{"href":"https:\/\/www.croatiarentalcars.com\/croatiarentalcars-new\/wp-json\/wp\/v2\/media?parent=6090"}],"wp:term":[{"taxonomy":"chart_cat","embeddable":true,"href":"https:\/\/www.croatiarentalcars.com\/croatiarentalcars-new\/wp-json\/wp\/v2\/chart_cat?post=6090"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}