{"id":24490,"date":"2019-04-23T12:15:16","date_gmt":"2019-04-23T09:15:16","guid":{"rendered":"http:\/\/www.webcodegeeks.com\/?p=24490"},"modified":"2019-04-22T14:29:11","modified_gmt":"2019-04-22T11:29:11","slug":"working-oracle-jet-chart-component","status":"publish","type":"post","link":"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/","title":{"rendered":"Working with Oracle JET Chart Component"},"content":{"rendered":"\n<p> In this post, we\u2019ll see how to use Oracle JET Chart (oj-chart) Component and its various properties. Here I am using Oracle JET with JDeveloper 12.1.3. To learn more about using JET with JDeveloper refer my <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/www.webcodegeeks.com\/javascript\/getting-started-oracle-jet-jdeveloper\/\" target=\"_blank\">previous post<\/a><\/p>\n\n\n\n<p>Goto Oracle JET Cookbook and read the whole recipe of&nbsp;<a href=\"https:\/\/www.oracle.com\/webfolder\/technetwork\/jet\/jetCookbook.html?component=barChart&amp;demo=default\" target=\"_blank\" rel=\"noreferrer noopener\">Bar Chart<\/a>, Here you\u2019ll learn about basic properties of a chart<\/p>\n\n\n\n<p>Now open the&nbsp;<em><strong>dashboard.html<\/strong><\/em>&nbsp;file from your project in JDeveloper editor and paste this code<\/p>\n\n\n\n<pre class=\"brush:xml\">&lt;div class=\"oj-hybrid-padding\"&gt;\n    &lt;h1&gt;Dashboard Content Area&lt;\/h1&gt;\n    &lt;div&gt;\n        &lt;oj-chart \n        id=\"barChart\" \n        type=\"bar\" \n        orientation=\"[[orientationValue]]\" \n        stack=\"[[stackValue]]\"\n        series=\"[[barSeriesValue]]\" \n        groups=\"[[barGroupsValue]]\" \n        animation-on-display=\"auto\"\n        animation-on-data-change=\"auto\" \n        hover-behavior=\"dim\" \n        style=\"max-width:650px;width:100%;height:350px;\"&gt;\n        &lt;\/oj-chart&gt;\n    &lt;\/div&gt;\n&lt;\/div&gt;\n<\/pre>\n\n\n\n<p>\n\nHere you can see&nbsp;<em><strong>orientation, stack, series, groups<\/strong><\/em>&nbsp;values are referenced from different variables and these variables are used in the&nbsp;<em><strong>dashboard.js<\/strong><\/em>&nbsp;file to supply values to chart component.\n\n<\/p>\n\n\n\n<pre class=\"brush:java\">\/*\n * Your dashboard ViewModel code goes here\n *\/\ndefine(['ojs\/ojcore', 'knockout', 'jquery', 'ojs\/ojchart'],\nfunction (oj, ko, $) {\n    function DashboardViewModel() {\n        var self = this;\n       \n        \/*Chart Properties*\/\n        self.stackValue = ko.observable('off');\n        self.orientationValue = ko.observable('vertical');\n        \/* chart data *\/\n        var barSeries = [\n        {name : \"Finance\", items : [42000, 55000]},\n        {name : \"Purchase\", items : [55000, 70000]},\n        {name : \"Service\", items : [36000, 50000]},\n        {name : \"Administration\", items : [28000, 65000]},\n        {name : \"HR\", items : [25000, 60000]}\n        ];\n        \n        var barGroups = [\"Average Salary\", \"Max Salary\"];\n        self.barSeriesValue = ko.observableArray(barSeries);\n        self.barGroupsValue = ko.observableArray(barGroups);\n        .\n        .\n        .\n<\/pre>\n\n\n\n<p>Here you can see that an array is used to populate data in the bar chart and all variables are defined with appropriate values, You can see that we have two groups here for each Department and chart orientation is vertical.<\/p>\n\n\n\n<p>Now run and check how it looks on the browser<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img decoding=\"async\" src=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2019\/04\/Oracle-JET-Bar-Chart-Component.jpg\" alt=\"Chart Component\" class=\"wp-image-24491\" width=\"686\" height=\"487\" srcset=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2019\/04\/Oracle-JET-Bar-Chart-Component.jpg 915w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2019\/04\/Oracle-JET-Bar-Chart-Component-300x213.jpg 300w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2019\/04\/Oracle-JET-Bar-Chart-Component-768x545.jpg 768w\" sizes=\"(max-width: 686px) 100vw, 686px\" \/><\/figure><\/div>\n\n\n\n<p>\n\nTry changing&nbsp;<em><strong>stackValue<\/strong>&nbsp;<\/em>and&nbsp;<em><strong>orientationValue<\/strong>&nbsp;<\/em>attribute and check what happens?\n\n<\/p>\n\n\n\n<pre class=\"brush:java\">\/*Chart Properties*\/\n   self.stackValue = ko.observable('on');\n   self.orientationValue = ko.observable('horizontal');\n<\/pre>\n\n\n\n<p>\n\nand bar chart looks like this\n\n<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img decoding=\"async\" src=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2019\/04\/Stacked-Oracle-JET-Bar-Chart.jpg\" alt=\"Chart Component\" class=\"wp-image-24492\" width=\"679\" height=\"487\" srcset=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2019\/04\/Stacked-Oracle-JET-Bar-Chart.jpg 905w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2019\/04\/Stacked-Oracle-JET-Bar-Chart-300x215.jpg 300w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2019\/04\/Stacked-Oracle-JET-Bar-Chart-768x551.jpg 768w\" sizes=\"(max-width: 679px) 100vw, 679px\" \/><\/figure><\/div>\n\n\n\n<p>Now I am adding a choice list that shows different chart type and on the selection of specific type, the chart should change so for this requirement I am adding an&nbsp;<em><strong>oj-select-one<\/strong><\/em>&nbsp;component on the page and referencing chart\u2019s&nbsp;<strong>type<\/strong>&nbsp;attribute to its value<\/p>\n\n\n\n<p>This is the complete code of the&nbsp;<em><strong>dashboard.html<\/strong><\/em><\/p>\n\n\n\n<pre class=\"brush:xml\">&lt;div class=\"oj-hybrid-padding\"&gt;\n    &lt;h1&gt;Dashboard Content Area&lt;\/h1&gt;\n    &lt;div&gt;\n     &lt;oj-label for=\"basicSelect\"&gt;Select Chart Type&lt;\/oj-label&gt;\n         \n        &lt;oj-select-one id=\"basicSelect\" value=\"{{chartType}}\" style=\"max-width:20em\"&gt;\n            &lt;oj-option value=\"bar\"&gt;Bar&lt;\/oj-option&gt;\n            &lt;oj-option value=\"pie\"&gt;Pie&lt;\/oj-option&gt;\n            &lt;oj-option value=\"line\"&gt;Line&lt;\/oj-option&gt;\n            &lt;oj-option value=\"area\"&gt;Area&lt;\/oj-option&gt;\n        &lt;\/oj-select-one&gt;\n        \n        &lt;oj-chart \n        id=\"barChart\" \n        type=\"[[chartType]]\" \n        orientation=\"[[orientationValue]]\" \n        stack=\"[[stackValue]]\"\n        series=\"[[barSeriesValue]]\" \n        groups=\"[[barGroupsValue]]\" \n        animation-on-display=\"auto\"\n        animation-on-data-change=\"auto\" \n        hover-behavior=\"dim\" \n        style=\"max-width:650px;width:100%;height:350px;\"&gt;\n        &lt;\/oj-chart&gt;\n    &lt;\/div&gt;\n&lt;\/div&gt;\n<\/pre>\n\n\n\n<p>\n\nand the&nbsp;<em><strong>dashboard.js<\/strong><\/em>&nbsp;file looks like this\n\n<\/p>\n\n\n\n<pre class=\"brush:js\">\/*\n * Your dashboard ViewModel code goes here\n *\/\ndefine(['ojs\/ojcore', 'knockout', 'jquery', 'ojs\/ojchart','ojs\/ojselectcombobox'],\nfunction (oj, ko, $) {\n    function DashboardViewModel() {\n        var self = this;\n        \n        \/\/Setting choice list attribute\n        this.chartType = ko.observable(\"bar\");\n        \n        \/*Chart Properties*\/\n        self.stackValue = ko.observable('off');\n        self.orientationValue = ko.observable('vertical');\n        \/* chart data *\/\n        var barSeries = [\n        {name : \"Finance\", items : [42000, 55000]},\n        {name : \"Purchase\", items : [55000, 70000]},\n        {name : \"Service\", items : [36000, 50000]},\n        {name : \"Administration\", items : [28000, 65000]},\n        {name : \"HR\", items : [25000, 60000]}\n        ];\n        var barGroups = [\"Average Salary\", \"Max Salary\"];\n        self.barSeriesValue = ko.observableArray(barSeries);\n        self.barGroupsValue = ko.observableArray(barGroups);\n       .\n       .\n       .\n<\/pre>\n\n\n\n<p>\n\nNow run and try changing chart type from the choice list\n\n<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img decoding=\"async\" src=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2019\/04\/Oracle-JET-Line-Chart-Component.jpg\" alt=\"Chart Component\" class=\"wp-image-24493\" width=\"682\" height=\"539\" srcset=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2019\/04\/Oracle-JET-Line-Chart-Component.jpg 909w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2019\/04\/Oracle-JET-Line-Chart-Component-300x237.jpg 300w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2019\/04\/Oracle-JET-Line-Chart-Component-768x607.jpg 768w\" sizes=\"(max-width: 682px) 100vw, 682px\" \/><\/figure><\/div>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img decoding=\"async\" src=\"http:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2019\/04\/Oracle-JET-Area-Chart-Component.jpg\" alt=\"Chart Component\" class=\"wp-image-24494\" width=\"682\" height=\"536\" srcset=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2019\/04\/Oracle-JET-Area-Chart-Component.jpg 909w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2019\/04\/Oracle-JET-Area-Chart-Component-300x236.jpg 300w, https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2019\/04\/Oracle-JET-Area-Chart-Component-768x603.jpg 768w\" sizes=\"(max-width: 682px) 100vw, 682px\" \/><\/figure><\/div>\n\n\n\n<p>You can download the Sample Oracle JET Application&nbsp;<a href=\"https:\/\/drive.google.com\/uc?export=download&amp;id=199LW2plMQojwDUBL4ueoag2ddtdc3PkS\" target=\"_blank\" rel=\"noreferrer noopener\">here<\/a>, its approx 13mb as JET library filed are included in the project<\/p>\n\n\n\n<p><strong>Cheers&nbsp;&nbsp;Happy Learning<\/strong><\/p>\n\n\n\n<div class=\"attribution\">\n<table>\n<tbody>\n<tr>\n<td>\n<p>Published on Web Code Geeks with permission by Ashish Awasthi, partner at our <a href=\"\/\/www.webcodegeeks.com\/join-us\/wcg\/\" target=\"_blank\" rel=\"noopener noreferrer\">WCG program<\/a>. See the original article here: <a href=\"http:\/\/www.awasthiashish.com\/2019\/04\/working-with-oracle-jet-chart-component.html\" target=\"_blank\" rel=\"noopener noreferrer\">Working with Oracle JET Chart Component<\/a><\/p>\n<p>Opinions expressed by Web Code Geeks contributors are their own.<\/p>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this post, we\u2019ll see how to use Oracle JET Chart (oj-chart) Component and its various properties. Here I am using Oracle JET with JDeveloper 12.1.3. To learn more about using JET with JDeveloper refer my previous post Goto Oracle JET Cookbook and read the whole recipe of&nbsp;Bar Chart, Here you\u2019ll learn about basic properties &hellip;<\/p>\n","protected":false},"author":12692,"featured_media":920,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9],"tags":[562],"class_list":["post-24490","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-javascript","tag-oracle-jet"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Working with Oracle JET Chart Component - Web Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"Interested to learn about Chart Component? Check our article explaining how to use Oracle JET Chart (oj-chart) Component and its various properties.\" \/>\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.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Working with Oracle JET Chart Component - Web Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"Interested to learn about Chart Component? Check our article explaining how to use Oracle JET Chart (oj-chart) Component and its various properties.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webcodegeeks\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/ashhish000\" \/>\n<meta property=\"article:published_time\" content=\"2019-04-23T09:15:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Ashish Awasthi\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@ashish__awasthi\" \/>\n<meta name=\"twitter:site\" content=\"@webcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ashish Awasthi\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/\"},\"author\":{\"name\":\"Ashish Awasthi\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/746b746daf99d152148eca75446941c0\"},\"headline\":\"Working with Oracle JET Chart Component\",\"datePublished\":\"2019-04-23T09:15:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/\"},\"wordCount\":333,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\",\"keywords\":[\"Oracle JET\"],\"articleSection\":[\"JavaScript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/\",\"name\":\"Working with Oracle JET Chart Component - Web Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\",\"datePublished\":\"2019-04-23T09:15:16+00:00\",\"description\":\"Interested to learn about Chart Component? Check our article explaining how to use Oracle JET Chart (oj-chart) Component and its various properties.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/#primaryimage\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webcodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"JavaScript\",\"item\":\"https:\/\/www.webcodegeeks.com\/category\/javascript\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Working with Oracle JET Chart Component\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#website\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"name\":\"Web Code Geeks\",\"description\":\"Web Developers Resource Center\",\"publisher\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webcodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/www.webcodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webcodegeeks\",\"https:\/\/x.com\/webcodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/746b746daf99d152148eca75446941c0\",\"name\":\"Ashish Awasthi\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f7d5962e721af4cb01df8f894447ad50c65cb662e5b4b21332f3c4210eb052c2?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f7d5962e721af4cb01df8f894447ad50c65cb662e5b4b21332f3c4210eb052c2?s=96&d=mm&r=g\",\"caption\":\"Ashish Awasthi\"},\"description\":\"An Oracle ACE, Blogger, Reviewer, Technical Lead working on Oracle ADF\",\"sameAs\":[\"http:\/\/www.awasthiashish.com\",\"https:\/\/facebook.com\/ashhish000\",\"https:\/\/www.linkedin.com\/in\/ashishkumarawasthi\/\",\"https:\/\/x.com\/ashish__awasthi\"],\"url\":\"https:\/\/www.webcodegeeks.com\/author\/ashish-awasthi\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Working with Oracle JET Chart Component - Web Code Geeks - 2026","description":"Interested to learn about Chart Component? Check our article explaining how to use Oracle JET Chart (oj-chart) Component and its various properties.","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.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/","og_locale":"en_US","og_type":"article","og_title":"Working with Oracle JET Chart Component - Web Code Geeks - 2026","og_description":"Interested to learn about Chart Component? Check our article explaining how to use Oracle JET Chart (oj-chart) Component and its various properties.","og_url":"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/","og_site_name":"Web Code Geeks","article_publisher":"https:\/\/www.facebook.com\/webcodegeeks","article_author":"https:\/\/facebook.com\/ashhish000","article_published_time":"2019-04-23T09:15:16+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","type":"image\/jpeg"}],"author":"Ashish Awasthi","twitter_card":"summary_large_image","twitter_creator":"@ashish__awasthi","twitter_site":"@webcodegeeks","twitter_misc":{"Written by":"Ashish Awasthi","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/#article","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/"},"author":{"name":"Ashish Awasthi","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/746b746daf99d152148eca75446941c0"},"headline":"Working with Oracle JET Chart Component","datePublished":"2019-04-23T09:15:16+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/"},"wordCount":333,"commentCount":0,"publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","keywords":["Oracle JET"],"articleSection":["JavaScript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/","url":"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/","name":"Working with Oracle JET Chart Component - Web Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.webcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/#primaryimage"},"image":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/#primaryimage"},"thumbnailUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","datePublished":"2019-04-23T09:15:16+00:00","description":"Interested to learn about Chart Component? Check our article explaining how to use Oracle JET Chart (oj-chart) Component and its various properties.","breadcrumb":{"@id":"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/#primaryimage","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2014\/10\/js-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.webcodegeeks.com\/javascript\/working-oracle-jet-chart-component\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webcodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"JavaScript","item":"https:\/\/www.webcodegeeks.com\/category\/javascript\/"},{"@type":"ListItem","position":3,"name":"Working with Oracle JET Chart Component"}]},{"@type":"WebSite","@id":"https:\/\/www.webcodegeeks.com\/#website","url":"https:\/\/www.webcodegeeks.com\/","name":"Web Code Geeks","description":"Web Developers Resource Center","publisher":{"@id":"https:\/\/www.webcodegeeks.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webcodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webcodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.webcodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.webcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webcodegeeks","https:\/\/x.com\/webcodegeeks"]},{"@type":"Person","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/746b746daf99d152148eca75446941c0","name":"Ashish Awasthi","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f7d5962e721af4cb01df8f894447ad50c65cb662e5b4b21332f3c4210eb052c2?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f7d5962e721af4cb01df8f894447ad50c65cb662e5b4b21332f3c4210eb052c2?s=96&d=mm&r=g","caption":"Ashish Awasthi"},"description":"An Oracle ACE, Blogger, Reviewer, Technical Lead working on Oracle ADF","sameAs":["http:\/\/www.awasthiashish.com","https:\/\/facebook.com\/ashhish000","https:\/\/www.linkedin.com\/in\/ashishkumarawasthi\/","https:\/\/x.com\/ashish__awasthi"],"url":"https:\/\/www.webcodegeeks.com\/author\/ashish-awasthi\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/24490","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/users\/12692"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/comments?post=24490"}],"version-history":[{"count":0,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/posts\/24490\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media\/920"}],"wp:attachment":[{"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/media?parent=24490"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/categories?post=24490"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webcodegeeks.com\/wp-json\/wp\/v2\/tags?post=24490"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}