{"id":83,"date":"2009-10-30T10:17:06","date_gmt":"2009-10-30T09:17:06","guid":{"rendered":"https:\/\/ridgesolutions.ie\/?p=83"},"modified":"2009-10-30T10:42:56","modified_gmt":"2009-10-30T09:42:56","slug":"drupal-radarpolar-charts-with-chart-api-module","status":"publish","type":"post","link":"https:\/\/www.ridgesolutions.ie\/index.php\/2009\/10\/30\/drupal-radarpolar-charts-with-chart-api-module\/","title":{"rendered":"Drupal &#8211; Radar\/Polar charts with Chart API Module"},"content":{"rendered":"<p>I have been developing a web application for one of our clients using drupal, it&#8217;s a dashboard type data visualisation system that consumes and displays data over an\u00a0intranet from their software systems.\u00a0 I have been using <a href=\"http:\/\/code.google.com\/apis\/chart\/\">google charts<\/a> with great success.<\/p>\n<p>\u00a0<\/p>\n<p>The <a href=\"http:\/\/drupal.org\/project\/chart\">Chart API<\/a> module for drupal is very nice, it lets you quite easily incorporate google charts into your web site or application without having to get into the details of the google chart API itself, and the charts themselves look great &#8211; just the kind of thing to cheer up a busy software developer.\u00a0 However it deosn&#8217;t seem to support Radar or Polar charts.\u00a0 There is no mention of them in the documentation, no example on the <a href=\"http:\/\/code.google.com\/p\/drupal-chart-api\/wiki\/Examples\">examples page<\/a>.\u00a0 There is also no symbol such as &#8216;CHART_TYPE_RADAR&#8217; defined in the module as there is for the other chart types,\u00a0for example &#8216;CHART_TYPE_LINE&#8217; defined for line charts.<\/p>\n<p>\u00a0<\/p>\n<p>So is it possible to plot radar charts using the <a href=\"http:\/\/drupal.org\/project\/chart\">Chart API<\/a> module?\u00a0 I consulted the google <a href=\"http:\/\/code.google.com\/apis\/chart\/\">chart api<\/a> and found that the radar chart type is donated as &#8216;r&#8217;, so I tried creating a simple chart and just set it&#8217;s type to &#8216;r&#8217; (rather than say CHART_TYPE_LINE) and it worked just fine!<\/p>\n<p>\u00a0<\/p>\n<pre><code>\r\n$chart = array(\r\n'#chart_id' =&gt; 'sink_radar',\r\n'#title' =&gt; chart_title(t('Failures by Sink'), '001334', 15),\r\n'#type' =&gt; 'r',\r\n'#size' =&gt; chart_size(400, 240),\r\n);\r\n\r\n$chart['#data'][] = array(20, 30, 15, 70, 90, 20);\r\n\r\n$chart['#mixed_axis_labels'][CHART_AXIS_X_BOTTOM][1][] =\r\n                      chart_mixed_axis_label('sink1');\r\n$chart['#mixed_axis_labels'][CHART_AXIS_X_BOTTOM][1][] =\r\n                      chart_mixed_axis_label('sink2');\r\n$chart['#mixed_axis_labels'][CHART_AXIS_X_BOTTOM][1][] =\r\n                      chart_mixed_axis_label('sink3');\r\n$chart['#mixed_axis_labels'][CHART_AXIS_X_BOTTOM][1][] =\r\n                      chart_mixed_axis_label('sink4');\r\n$chart['#mixed_axis_labels'][CHART_AXIS_X_BOTTOM][1][] =\r\n                      chart_mixed_axis_label('sink5');\r\n$chart['#mixed_axis_labels'][CHART_AXIS_X_BOTTOM][1][] =\r\n                      chart_mixed_axis_label('sink6');\r\n\r\necho chart_render($chart);\r\n<\/code><\/pre>\n<p>\u00a0This code yileds a chart like this:<\/p>\n<p>\u00a0<\/p>\n<p style=\"text-align: center;\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter\" style=\"vertical-align: middle;\" src=\"\/wp-content\/uploads\/images\/failures.png\" alt=\"Radar Chart\" width=\"285\" height=\"254\" \/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>I have been developing a web application for one of our clients using drupal, it&#8217;s a dashboard type data visualisation system that consumes and displays data over an\u00a0intranet from their software systems.\u00a0 I have been using google charts with great success. \u00a0 The Chart API module for drupal is very nice, it lets you quite [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[21,90,34],"class_list":["post-83","post","type-post","status-publish","format-standard","hentry","category-tech-stuff","tag-drupal","tag-google-charts","tag-web-application"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"I have been developing a web application for one of our clients using drupal, it&#039;s a dashboard type data visualisation system that consumes and displays data over an intranet from their software systems. I have been using google charts with great success. The Chart API module for drupal is very nice, it lets you quite\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Kevin Godden\"\/>\n\t<meta name=\"google-site-verification\" content=\"Kyj52YLp6GOPA44PVBffo9fjW8rgWHYYRF0ZYjfy6ss\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.ridgesolutions.ie\/index.php\/2009\/10\/30\/drupal-radarpolar-charts-with-chart-api-module\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Systems and Embedded Software Engineering, Ireland. | Some thoughts of a busy Computer Engineer\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Drupal \u2013 Radar\/Polar charts with Chart API Module\" \/>\n\t\t<meta property=\"og:description\" content=\"I have been developing a web application for one of our clients using drupal, it&#039;s a dashboard type data visualisation system that consumes and displays data over an intranet from their software systems. I have been using google charts with great success. The Chart API module for drupal is very nice, it lets you quite\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.ridgesolutions.ie\/index.php\/2009\/10\/30\/drupal-radarpolar-charts-with-chart-api-module\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2009-10-30T09:17:06+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2009-10-30T09:42:56+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Drupal \u2013 Radar\/Polar charts with Chart API Module\" \/>\n\t\t<meta name=\"twitter:description\" content=\"I have been developing a web application for one of our clients using drupal, it&#039;s a dashboard type data visualisation system that consumes and displays data over an intranet from their software systems. I have been using google charts with great success. The Chart API module for drupal is very nice, it lets you quite\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2009\\\/10\\\/30\\\/drupal-radarpolar-charts-with-chart-api-module\\\/#article\",\"name\":\"Drupal \\u2013 Radar\\\/Polar charts with Chart API Module\",\"headline\":\"Drupal &#8211; Radar\\\/Polar charts with Chart API Module\",\"author\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/author\\\/kgodden\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/wp-content\\\/uploads\\\/images\\\/failures.png\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2009\\\/10\\\/30\\\/drupal-radarpolar-charts-with-chart-api-module\\\/#articleImage\"},\"datePublished\":\"2009-10-30T10:17:06+00:00\",\"dateModified\":\"2009-10-30T10:42:56+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2009\\\/10\\\/30\\\/drupal-radarpolar-charts-with-chart-api-module\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2009\\\/10\\\/30\\\/drupal-radarpolar-charts-with-chart-api-module\\\/#webpage\"},\"articleSection\":\"Tech Stuff, Drupal, google charts, Web Application\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2009\\\/10\\\/30\\\/drupal-radarpolar-charts-with-chart-api-module\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.ridgesolutions.ie\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/category\\\/tech-stuff\\\/#listItem\",\"name\":\"Tech Stuff\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/category\\\/tech-stuff\\\/#listItem\",\"position\":2,\"name\":\"Tech Stuff\",\"item\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/category\\\/tech-stuff\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2009\\\/10\\\/30\\\/drupal-radarpolar-charts-with-chart-api-module\\\/#listItem\",\"name\":\"Drupal &#8211; Radar\\\/Polar charts with Chart API Module\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2009\\\/10\\\/30\\\/drupal-radarpolar-charts-with-chart-api-module\\\/#listItem\",\"position\":3,\"name\":\"Drupal &#8211; Radar\\\/Polar charts with Chart API Module\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/category\\\/tech-stuff\\\/#listItem\",\"name\":\"Tech Stuff\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/#organization\",\"name\":\"Ridge Solutions, Software Development and Software Engineering, Ireland.\",\"description\":\"Some thoughts of a busy Computer Engineer\",\"url\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/wp-content\\\/uploads\\\/2013\\\/09\\\/ridge_logo1.jpg\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2009\\\/10\\\/30\\\/drupal-radarpolar-charts-with-chart-api-module\\\/#organizationLogo\",\"width\":400,\"height\":81},\"image\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2009\\\/10\\\/30\\\/drupal-radarpolar-charts-with-chart-api-module\\\/#organizationLogo\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/author\\\/kgodden\\\/#author\",\"url\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/author\\\/kgodden\\\/\",\"name\":\"Kevin Godden\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2009\\\/10\\\/30\\\/drupal-radarpolar-charts-with-chart-api-module\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d2833f41e59a25cf2a9741a05ec383bfdd278762a5e0798a90940e7ab0a107a2?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kevin Godden\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2009\\\/10\\\/30\\\/drupal-radarpolar-charts-with-chart-api-module\\\/#webpage\",\"url\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2009\\\/10\\\/30\\\/drupal-radarpolar-charts-with-chart-api-module\\\/\",\"name\":\"Drupal \\u2013 Radar\\\/Polar charts with Chart API Module\",\"description\":\"I have been developing a web application for one of our clients using drupal, it's a dashboard type data visualisation system that consumes and displays data over an intranet from their software systems. I have been using google charts with great success. The Chart API module for drupal is very nice, it lets you quite\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/2009\\\/10\\\/30\\\/drupal-radarpolar-charts-with-chart-api-module\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/author\\\/kgodden\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/index.php\\\/author\\\/kgodden\\\/#author\"},\"datePublished\":\"2009-10-30T10:17:06+00:00\",\"dateModified\":\"2009-10-30T10:42:56+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/#website\",\"url\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/\",\"name\":\"Ridge Solutions, Software Development and Software Engineering, Ireland.\",\"description\":\"Some thoughts of a busy Computer Engineer\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.ridgesolutions.ie\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Drupal \u2013 Radar\/Polar charts with Chart API Module","description":"I have been developing a web application for one of our clients using drupal, it's a dashboard type data visualisation system that consumes and displays data over an intranet from their software systems. I have been using google charts with great success. The Chart API module for drupal is very nice, it lets you quite","canonical_url":"https:\/\/www.ridgesolutions.ie\/index.php\/2009\/10\/30\/drupal-radarpolar-charts-with-chart-api-module\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"Kyj52YLp6GOPA44PVBffo9fjW8rgWHYYRF0ZYjfy6ss","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2009\/10\/30\/drupal-radarpolar-charts-with-chart-api-module\/#article","name":"Drupal \u2013 Radar\/Polar charts with Chart API Module","headline":"Drupal &#8211; Radar\/Polar charts with Chart API Module","author":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/author\/kgodden\/#author"},"publisher":{"@id":"https:\/\/www.ridgesolutions.ie\/#organization"},"image":{"@type":"ImageObject","url":"\/wp-content\/uploads\/images\/failures.png","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2009\/10\/30\/drupal-radarpolar-charts-with-chart-api-module\/#articleImage"},"datePublished":"2009-10-30T10:17:06+00:00","dateModified":"2009-10-30T10:42:56+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2009\/10\/30\/drupal-radarpolar-charts-with-chart-api-module\/#webpage"},"isPartOf":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2009\/10\/30\/drupal-radarpolar-charts-with-chart-api-module\/#webpage"},"articleSection":"Tech Stuff, Drupal, google charts, Web Application"},{"@type":"BreadcrumbList","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2009\/10\/30\/drupal-radarpolar-charts-with-chart-api-module\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie#listItem","position":1,"name":"Home","item":"https:\/\/www.ridgesolutions.ie","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/category\/tech-stuff\/#listItem","name":"Tech Stuff"}},{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/category\/tech-stuff\/#listItem","position":2,"name":"Tech Stuff","item":"https:\/\/www.ridgesolutions.ie\/index.php\/category\/tech-stuff\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2009\/10\/30\/drupal-radarpolar-charts-with-chart-api-module\/#listItem","name":"Drupal &#8211; Radar\/Polar charts with Chart API Module"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2009\/10\/30\/drupal-radarpolar-charts-with-chart-api-module\/#listItem","position":3,"name":"Drupal &#8211; Radar\/Polar charts with Chart API Module","previousItem":{"@type":"ListItem","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/category\/tech-stuff\/#listItem","name":"Tech Stuff"}}]},{"@type":"Organization","@id":"https:\/\/www.ridgesolutions.ie\/#organization","name":"Ridge Solutions, Software Development and Software Engineering, Ireland.","description":"Some thoughts of a busy Computer Engineer","url":"https:\/\/www.ridgesolutions.ie\/","logo":{"@type":"ImageObject","url":"https:\/\/www.ridgesolutions.ie\/wp-content\/uploads\/2013\/09\/ridge_logo1.jpg","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2009\/10\/30\/drupal-radarpolar-charts-with-chart-api-module\/#organizationLogo","width":400,"height":81},"image":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2009\/10\/30\/drupal-radarpolar-charts-with-chart-api-module\/#organizationLogo"}},{"@type":"Person","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/author\/kgodden\/#author","url":"https:\/\/www.ridgesolutions.ie\/index.php\/author\/kgodden\/","name":"Kevin Godden","image":{"@type":"ImageObject","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2009\/10\/30\/drupal-radarpolar-charts-with-chart-api-module\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/d2833f41e59a25cf2a9741a05ec383bfdd278762a5e0798a90940e7ab0a107a2?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kevin Godden"}},{"@type":"WebPage","@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2009\/10\/30\/drupal-radarpolar-charts-with-chart-api-module\/#webpage","url":"https:\/\/www.ridgesolutions.ie\/index.php\/2009\/10\/30\/drupal-radarpolar-charts-with-chart-api-module\/","name":"Drupal \u2013 Radar\/Polar charts with Chart API Module","description":"I have been developing a web application for one of our clients using drupal, it's a dashboard type data visualisation system that consumes and displays data over an intranet from their software systems. I have been using google charts with great success. The Chart API module for drupal is very nice, it lets you quite","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.ridgesolutions.ie\/#website"},"breadcrumb":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/2009\/10\/30\/drupal-radarpolar-charts-with-chart-api-module\/#breadcrumblist"},"author":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/author\/kgodden\/#author"},"creator":{"@id":"https:\/\/www.ridgesolutions.ie\/index.php\/author\/kgodden\/#author"},"datePublished":"2009-10-30T10:17:06+00:00","dateModified":"2009-10-30T10:42:56+00:00"},{"@type":"WebSite","@id":"https:\/\/www.ridgesolutions.ie\/#website","url":"https:\/\/www.ridgesolutions.ie\/","name":"Ridge Solutions, Software Development and Software Engineering, Ireland.","description":"Some thoughts of a busy Computer Engineer","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.ridgesolutions.ie\/#organization"}}]},"og:locale":"en_US","og:site_name":"Systems and Embedded Software Engineering, Ireland. | Some thoughts of a busy Computer Engineer","og:type":"article","og:title":"Drupal \u2013 Radar\/Polar charts with Chart API Module","og:description":"I have been developing a web application for one of our clients using drupal, it's a dashboard type data visualisation system that consumes and displays data over an intranet from their software systems. I have been using google charts with great success. The Chart API module for drupal is very nice, it lets you quite","og:url":"https:\/\/www.ridgesolutions.ie\/index.php\/2009\/10\/30\/drupal-radarpolar-charts-with-chart-api-module\/","article:published_time":"2009-10-30T09:17:06+00:00","article:modified_time":"2009-10-30T09:42:56+00:00","twitter:card":"summary","twitter:title":"Drupal \u2013 Radar\/Polar charts with Chart API Module","twitter:description":"I have been developing a web application for one of our clients using drupal, it's a dashboard type data visualisation system that consumes and displays data over an intranet from their software systems. I have been using google charts with great success. The Chart API module for drupal is very nice, it lets you quite"},"aioseo_meta_data":{"post_id":"83","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-09-13 21:20:43","updated":"2025-07-15 20:37:15","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.ridgesolutions.ie\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.ridgesolutions.ie\/index.php\/category\/tech-stuff\/\" title=\"Tech Stuff\">Tech Stuff<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tDrupal \u2013 Radar\/Polar charts with Chart API Module\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.ridgesolutions.ie"},{"label":"Tech Stuff","link":"https:\/\/www.ridgesolutions.ie\/index.php\/category\/tech-stuff\/"},{"label":"Drupal &#8211; Radar\/Polar charts with Chart API Module","link":"https:\/\/www.ridgesolutions.ie\/index.php\/2009\/10\/30\/drupal-radarpolar-charts-with-chart-api-module\/"}],"_links":{"self":[{"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/posts\/83","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/comments?post=83"}],"version-history":[{"count":0,"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/posts\/83\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/media?parent=83"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/categories?post=83"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ridgesolutions.ie\/index.php\/wp-json\/wp\/v2\/tags?post=83"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}