{"id":2991,"date":"2017-04-05T15:23:04","date_gmt":"2017-04-05T15:23:04","guid":{"rendered":"https:\/\/www.anychart.com\/blog\/?p=2991"},"modified":"2017-09-11T11:57:50","modified_gmt":"2017-09-11T11:57:50","slug":"chart-captions-title-graph-tips","status":"publish","type":"post","link":"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/","title":{"rendered":"How to Name a Graph: Tips for Writing Great Chart Captions"},"content":{"rendered":"<p><img decoding=\"async\" class=\"alignnone size-full wp-image-3562\" src=\"https:\/\/www.anychart.com\/blog\/wp-content\/uploads\/2017\/04\/software-sales-dashboard-in-javascript_.png\" alt=\"Dashboard with Good Chart Captions: Tips on How to Name a Graph\" width=\"100%\" srcset=\"https:\/\/www.anychart.com\/blog\/wp-content\/uploads\/2017\/04\/software-sales-dashboard-in-javascript_.png 879w, https:\/\/www.anychart.com\/blog\/wp-content\/uploads\/2017\/04\/software-sales-dashboard-in-javascript_-300x175.png 300w, https:\/\/www.anychart.com\/blog\/wp-content\/uploads\/2017\/04\/software-sales-dashboard-in-javascript_-768x449.png 768w\" sizes=\"(max-width: 879px) 100vw, 879px\" \/>Charts are one of the best ways to display your data in a way that&#8217;s meaningful to readers, but if you don&#8217;t have great chart captions, your readers may interpret that meaningful information incorrectly.<\/p>\n<p>Readers&#8217; attention spans are waning by the second. In fact, <a href=\"http:\/\/www.telegraph.co.uk\/science\/2016\/03\/12\/humans-have-shorter-attention-span-than-goldfish-thanks-to-smart\/\" target=\"_blank\" rel=\"nofollow\">humans now have a shorter attention span than goldfish<\/a> (yes that cute, little fish you won from the carnival can pay attention better than the average person). This means that most people are scanning through your work. Without a clear, concise chart caption, your chances of getting your message across are slim.<\/p>\n<p>Fear not! Here are some tips to help you come up with excellent chart captions, titles for <a href=\"https:\/\/www.anychart.com\/products\/anychart\/gallery\/\" target=\"_blank\">graphs<\/a> and <a href=\"https:\/\/www.anychart.com\/solutions\/\" target=\"_blank\">dashboards<\/a>.<\/p>\n<p><!--more--><\/p>\n<h2><b>Summarize Your Data in Plain English <\/b><\/h2>\n<p>The chart caption is the first thing a user sees when they\u2019re reading your data visualization\u00a0\u2013 so it should be easy to understand. Don&#8217;t just use numbers, use words to describe those numbers.<\/p>\n<p>For example, the chart below is a nice-looking interactive <a href=\"https:\/\/www.anychart.com\/products\/anychart\/gallery\/Scatter_Charts\/Combination_of_Line_and_Marker_Charts.php\" target=\"_blank\">combination of marker and line charts<\/a>. But it definitely lacks reference for the left and bottom figures, not to mention what it&#8217;s all about. For example, we&#8217;re not sure what the &#8220;40,&#8221; &#8220;50,&#8221; and &#8220;60&#8221; measurements are referring to, and we&#8217;re not sure what the &#8220;2,&#8221; &#8220;3,&#8221; &#8220;4&#8221; measurements on the bottom are referring to either.<\/p>\n<p><script src=\"\/\/cdn.anychart.com\/js\/7.14.3\/anychart-bundle.min.js\"><\/script><script src=\"\/\/cdn.anychart.com\/samples-data\/scatter-charts\/combination-of-line-and-marker-charts\/data.js\"><\/script><\/p>\n<style>\n    html, body, #container0 {width: 100%; height: 450px; margin: 0; padding: 0;}<br \/><\/style>\n<div id=\"container0\"><\/div>\n<p><script type=\"text\/javascript\">\nanychart.onDocumentReady(function () {\n    chart = anychart.scatter();\n    chart.animation(true);\n    chart.xScale().minimum(1.5).maximum(5.5).ticks().interval(1);\n    chart.yScale().minimum(40).maximum(100).ticks().interval(10);\n    chart.xAxis().drawFirstLabel(false).drawLastLabel(false);\n    chart.interactivity().hoverMode('bySpot');\n    chart.interactivity().spotRadius(30);\n    chart.tooltip().displayMode('union');\n    var marker = chart.marker(getMarkerData());\n    marker.type('triangleup');\n    marker.size(4).hoverSize(7);\n    marker.hoverFill('gold').hoverStroke(anychart.color.darken('gold'));\n    marker.tooltip().hAlign('start');\n    marker.tooltip().format(function () {\n        return this['value'] + ' min.\\n' + this['x'] + ' min.';\n    });\n    chart.line(getLineData()).markers(null).hoverStroke(function () {\n        return this['sourceColor'];\n    });\n    chart.container('container0').draw();\n});\n    <\/script><\/p>\n<p>Instead, make sure you <a href=\"https:\/\/docs.anychart.com\/Common_Settings\/Title\" target=\"_blank\" rel=\"nofollow\">name your graph<\/a> and add chart captions for any of your figures. The chart below clearly states it tells you about system interruptions as well as exactly which figures stand for waiting time between interruptions and which figures are the interruption duration.<\/p>\n<p><script src=\"\/\/cdn.anychart.com\/samples-data\/scatter-charts\/combination-of-line-and-marker-charts\/data.js\"><\/script><\/p>\n<style>\n    html, body, #container {width: 100%; height: 450px; margin: 0; padding: 0;}<br \/><\/style>\n<div id=\"container\"><\/div>\n<p><script type=\"text\/javascript\">\nanychart.onDocumentReady(function () {\n    chart = anychart.scatter();\n    chart.animation(true);\n    chart.title('System Interruptions');\n    chart.xScale().minimum(1.5).maximum(5.5).ticks().interval(1);\n    chart.yScale().minimum(40).maximum(100).ticks().interval(10);\n    chart.yAxis().title('Waiting time (minutes)');\n    chart.xAxis().title('Interruption duration (minutes)');\n    chart.xAxis().drawFirstLabel(false).drawLastLabel(false);\n    chart.interactivity().hoverMode('bySpot');\n    chart.interactivity().spotRadius(30);\n    chart.tooltip().displayMode('union');\n    var marker = chart.marker(getMarkerData());\n    marker.type('triangleup');\n    marker.size(4).hoverSize(7);\n    marker.hoverFill('gold').hoverStroke(anychart.color.darken('gold'));\n    marker.tooltip().hAlign('start');\n    marker.tooltip().format(function () {\n        return 'Waiting time: ' + this['value'] + ' min.\\nDuration: ' + this['x'] + ' min.';\n    });\n    chart.line(getLineData()).markers(null).hoverStroke(function () {\n        return this['sourceColor'];\n    });\n    chart.container('container').draw();\n});\n    <\/script><\/p>\n<h2><b>Left Justify Chart Captions Below Figure <\/b><\/h2>\n<p>Charts are read from the bottom up, so chart captions should be left-justified below the visual representation of your data. Don&#8217;t create a chart with the main figures on the right-hand side \u2013 it will confuse your readers. Keep key information like the units of measure aligned left or along the bottom. Avoid putting them on the top (reserve that for your graph&#8217;s title) and on the right.<\/p>\n<p>The chart above can give you an idea of how it can work in practice.<\/p>\n<h2><b>Keep Chart\u00a0Captions Simple and Short <\/b><\/h2>\n<p>If you&#8217;re wondering how to make a good title for your graph, the most important thing you should know is to keep it simple. People are scanning your information and you don&#8217;t want the reader to have to work hard to understand what you&#8217;re trying to say.<\/p>\n<p>For example, if you wanted to make a chart that described\u00a0what channels had brought you users, there are two ways to go about it, and only one is the most precise. Here are two examples:<\/p>\n<ul>\n<li><em>Here&#8217;s the Composition of the User Acquisition Pattern Between the Months of January 2016 and December 2016 with Focus on the Share of Display Ads<\/em><\/li>\n<li><em>User Acquisition by Channel (2016)<\/em><\/li>\n<\/ul>\n<p>The second option provides the same exact data in a much more streamlined, easy-to-read manner. This is the better title for the following <a href=\"https:\/\/www.anychart.com\/products\/anychart\/gallery\/Pie_and_Donut_Charts\/\" target=\"_blank\">pie chart<\/a> in this case.<\/p>\n<div id=\"container11\" style=\"width: 100%; height: 450px;\"><\/div>\n<p><script>\n  anychart.onDocumentLoad(function() {\n    var chart = anychart.pie([\n      [\"Search engines\", 408000],\n      [\"Referrals\", 250000],\n      [\"Display ads\", 95000],\n      [\"Social media\", 80000]\n    ]);\n  chart.title('User Acquisition by Channel (2016)');\n  chart.explode(30);\n  chart.explodeSlice(2, true);\n  chart.tooltip().format(\"{%Value} users ({%PercentValue}%)\");\n  chart.container('container11');\n  chart.draw();\n  });\n<\/script><\/p>\n<h2><b>Simplify Your Information <\/b><\/h2>\n<p>Like I stated above, humans really only pay attention to something for a few, about 8 seconds to be precise. This is why your image should immediately be clear and simple to read. Consider the <a href=\"https:\/\/docs.anychart.com\/Appearance_Settings\/Color_Management\" target=\"_blank\" rel=\"nofollow\">colors<\/a>, the size of the info, the prominence of certain features. You don&#8217;t want users to have to strain their eyes to read your information.<\/p>\n<h2><b>Include Units of Representation <\/b><\/h2>\n<p>You definitely don\u2019t want users to be confused about what your data means, so you need to have sub captions that clearly describe what you&#8217;re trying to say.<\/p>\n<p>For example, If your chart caption is <em>Profits in 2016 (Jan. \u2013 Dec.)<\/em>, you need to say exactly how you&#8217;re measuring it. This is how your caption should be formatted if you have a <a href=\"https:\/\/www.anychart.com\/products\/anychart\/gallery\/Column_Charts\/\" target=\"_blank\">column chart<\/a> like this:<\/p>\n<p style=\"text-align: center;\"><b>Profits in 2016 (Jan. \u2013 Dec.) <\/b><br \/>\n<b>In millions (USD)<\/b><\/p>\n<p>Here&#8217;s a\u00a0good example:<\/p>\n<div id=\"container1\" style=\"width: 100%; height: 450px;\"><\/div>\n<p><script>\nanychart.onDocumentReady(function () {\n    chart = anychart.column();\n    chart.animation(true);\n    var title = chart.title();\n        title.enabled(true);\n        title.text(\n            'Profits in 2016 (Jan. \u2013 Dec.)' +\n            '<br \/><span style=\"color:#929292; font-size: 14px;\">In millions (USD)<\/span>'\n    ).padding([0, 0, 10, 0]).useHtml(true);\n    var series = chart.column([\n        ['Jan.', '8'],\n        ['Feb.', '9'],\n        ['Mar.', '11'],\n        ['Apr.', '13'],\n        ['May', '14'],\n        ['June', '17'],\n        ['July', '18'],\n        ['Aug.', '19'],\n        ['Sep.', '21'],\n        ['Oct.', '22'],\n        ['Nov.', '25'],\n        ['Dec.', '27'],\n    ]);\n    chart.tooltip().titleFormat(\"{%x}\");\n    chart.tooltip().format(\"${%Value}\");\n    chart.tooltip().position('top').anchor('bottom').offsetX(0).offsetY(5);\n    chart.yScale().minimum(0);\n    chart.yAxis().labels().format(\"{%Value}\");\n    chart.tooltip().positionMode('point');\n    chart.interactivity().hoverMode('byX');\n    chart.xAxis().title('Month of 2016');\n    chart.yAxis().title('Monthly Profit');\n    chart.container('container1');\n    chart.draw();\n});\n<\/script><\/p>\n<h2><b>Don&#8217;t Forget Time Period! <\/b><\/h2>\n<p>You may have a bunch of awesome statistics in your data, but if you don&#8217;t have the time period in which your information occurred, then your data isn&#8217;t relevant.<\/p>\n<p>You can put the time period anywhere \u2013 it can be in a chart caption or sub caption \u2013 it just has to be there, like in the example above.<\/p>\n<h2><b>Avoid Using Too Many Articles (Nix Any &#8220;A,&#8221; &#8220;An,&#8221; &#8220;The&#8221; That You Can) <\/b><\/h2>\n<p>Charts should be simple and precise. You don&#8217;t want to have too many wordy articles that muck up your text. For example, here are two titles:<\/p>\n<ul>\n<li><em>The Average Revenue per Each of the Days in September 2015<\/em><\/li>\n<li><em>Daily Revenue (September 2015)<\/em><\/li>\n<\/ul>\n<p>The second option is the better option, cutting out nearly every extra article. Check out the following <a href=\"https:\/\/www.anychart.com\/products\/anychart\/gallery\/Area_Charts\/\" target=\"_blank\">area chart<\/a> sample. It&#8217;s still completely specific, but no longer difficult to read and understand if you&#8217;re skimming.<\/p>\n<div id=\"container2\" style=\"width: 100%; height: 450px;\"><\/div>\n<p><script>\nanychart.onDocumentReady(function () {\n    var dataSet = anychart.data.set(getData());\n    var seriesData = dataSet.mapAs({x: [0], value: [1]});\n    chart = anychart.area();\n    chart.yAxis().labels().format(\"${%Value}\");\n    chart.animation(true);\n    chart.yAxis().title('Revenue');\n    chart.xAxis().title('Date');\n    chart.xAxis().labels().padding([5, 5, 0, 5]);\n    chart.xAxis().labels().rotation(90);\n    chart.xAxis().overlapMode(\"allowOverlap\");\n    chart.title('Daily Revenue (September 2015)');\n    chart.title().useHtml(true).padding([0, 0, 20, 0]);\n    var series = chart.area(seriesData);\n    series.name(\"ACME Revenue\");\n    series.hoverMarkers().enabled(true).type('circle').size(4);\n    chart.tooltip().position('top').anchor('centerbottom');\n    chart.tooltip().positionMode('point');\n    chart.interactivity().hoverMode('byX');\n    chart.right(20);\n    chart.container('container2');\n    chart.draw();\n});\nfunction getData() {\n    return [\n        ['2015\/9\/01', 10],\n        ['2015\/9\/02', 12],\n        ['2015\/9\/03', 11],\n        ['2015\/9\/04', 15],\n        ['2015\/9\/05', 20],\n        ['2015\/9\/06', 22],\n        ['2015\/9\/07', 21],\n        ['2015\/9\/08', 25],\n        ['2015\/9\/09', 31],\n        ['2015\/9\/10', 32],\n        ['2015\/9\/11', 28],\n        ['2015\/9\/12', 29],\n        ['2015\/9\/13', 40],\n        ['2015\/9\/14', 41],\n        ['2015\/9\/15', 45],\n        ['2015\/9\/16', 50],\n        ['2015\/9\/17', 65],\n        ['2015\/9\/18', 45],\n        ['2015\/9\/19', 50],\n        ['2015\/9\/20', 51],\n        ['2015\/9\/21', 65],\n        ['2015\/9\/22', 60],\n        ['2015\/9\/23', 62],\n        ['2015\/9\/24', 65],\n        ['2015\/9\/25', 45],\n        ['2015\/9\/26', 55],\n        ['2015\/9\/27', 59],\n        ['2015\/9\/28', 52],\n        ['2015\/9\/29', 53],\n        ['2015\/9\/30', 68]\n    ]\n}\n<\/script><\/p>\n<h2><b>Skip Out on Adjectives \u2013 Your Opinion Doesn&#8217;t Matter <\/b><\/h2>\n<p>If you&#8217;re wondering how to name a graph most effectively, consider cutting out adjectives. Adjectives often stem from opinion or an editorialized version of your data. You want your data to be fact with no opinion mixed in whatsoever. To do this \u2013 and also have the cleanest copy \u2013 cut out adjectives. The less editorialized your captions are, the more credible your chart will seem. For example, here are two titles:<\/p>\n<ul>\n<li><em>The Massive Daily Revenue We Pulled in September 2015 \u2013 Our Most Amazing Month<\/em><\/li>\n<li><em>Daily Revenue (September 2015)<\/em><\/li>\n<\/ul>\n<p>If your revenue was massive, it will show in the chart (see the area chart above). Saying so just makes it seem like your data is inaccurate or you&#8217;re trying to make it look a certain way without the facts being there. Let your data speak for itself instead.<\/p>\n<h2><b>If You Need to Say &#8220;Pictured Above&#8221; or &#8220;Shown Above&#8221;, Reconsider Your Visuals <\/b><\/h2>\n<p>Visuals should be clean and easy to comprehend. If you find yourself having to describe them with phrases like &#8220;pictured above&#8221; or &#8220;shown below&#8221;, your visuals are failing you. Rethink the best way to visualize your chart information until you no longer have to describe where specific information is located.<\/p>\n<h2><b>Conclusion <\/b><\/h2>\n<p>Great data speaks for itself. Your captioning just complements your already well-researched facts and makes them easier to digest. Keep chart captions\u00a0simple, keep them\u00a0concise yet meaningful, and you will never have a problem.<\/p>\n<!-- AddThis Advanced Settings generic via filter on the_content --><!-- AddThis Share Buttons generic via filter on the_content -->","protected":false},"excerpt":{"rendered":"<p>Charts are one of the best ways to display your data in a way that&#8217;s meaningful to readers, but if you don&#8217;t have great chart captions, your readers may interpret that meaningful information incorrectly. Readers&#8217; attention spans are waning by the second. In fact, humans now have a shorter attention span than goldfish (yes that [&hellip;]<!-- AddThis Advanced Settings generic via filter on get_the_excerpt --><!-- AddThis Share Buttons generic via filter on get_the_excerpt --><\/p>\n","protected":false},"author":9,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5,8,4],"tags":[70,71,35,184,85,49,54,30],"class_list":["post-2991","post","type-post","status-publish","format-standard","hentry","category-anychart-charting-component","category-business-intelligence","category-tips-and-tricks","tag-bar-chart","tag-bar-charts","tag-business-intelligence","tag-chart-captions","tag-column-charts","tag-dashboards","tag-data-visualization","tag-tips-and-tricks","wpautop"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Name a Graph: Tips for Writing Great Chart Captions<\/title>\n<meta name=\"description\" content=\"Charts are a great way to display data in a meaningful way. But if you don&#039;t have great chart captions, readers may interpret that information incorrectly.\" \/>\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.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Name a Graph: Tips for Writing Great Chart Captions\" \/>\n<meta property=\"og:description\" content=\"Charts are a great way to display data in a meaningful way. But if you don&#039;t have great chart captions, readers may interpret that information incorrectly.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/\" \/>\n<meta property=\"og:site_name\" content=\"AnyChart News\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/AnyCharts\" \/>\n<meta property=\"article:published_time\" content=\"2017-04-05T15:23:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-09-11T11:57:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.anychart.com\/blog\/wp-content\/uploads\/2017\/04\/software-sales-dashboard-in-javascript_.png\" \/>\n\t<meta property=\"og:image:width\" content=\"879\" \/>\n\t<meta property=\"og:image:height\" content=\"514\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"AnyChart Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@AnyChart\" \/>\n<meta name=\"twitter:site\" content=\"@AnyChart\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"AnyChart Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/\"},\"author\":{\"name\":\"AnyChart Team\",\"@id\":\"https:\/\/www.anychart.com\/blog\/#\/schema\/person\/2470e26e58231357db6d9993ecd6461b\"},\"headline\":\"How to Name a Graph: Tips for Writing Great Chart Captions\",\"datePublished\":\"2017-04-05T15:23:04+00:00\",\"dateModified\":\"2017-09-11T11:57:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/\"},\"wordCount\":1060,\"commentCount\":12,\"image\":{\"@id\":\"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.anychart.com\/blog\/wp-content\/uploads\/2017\/04\/software-sales-dashboard-in-javascript_.png\",\"keywords\":[\"bar chart\",\"bar charts\",\"Business Intelligence\",\"chart captions\",\"column charts\",\"Dashboards\",\"Data Visualization\",\"Tips and tricks\"],\"articleSection\":[\"AnyChart Charting Component\",\"Business Intelligence\",\"Tips and Tricks\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/\",\"url\":\"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/\",\"name\":\"How to Name a Graph: Tips for Writing Great Chart Captions\",\"isPartOf\":{\"@id\":\"https:\/\/www.anychart.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.anychart.com\/blog\/wp-content\/uploads\/2017\/04\/software-sales-dashboard-in-javascript_.png\",\"datePublished\":\"2017-04-05T15:23:04+00:00\",\"dateModified\":\"2017-09-11T11:57:50+00:00\",\"author\":{\"@id\":\"https:\/\/www.anychart.com\/blog\/#\/schema\/person\/2470e26e58231357db6d9993ecd6461b\"},\"description\":\"Charts are a great way to display data in a meaningful way. But if you don't have great chart captions, readers may interpret that information incorrectly.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/#primaryimage\",\"url\":\"https:\/\/www.anychart.com\/blog\/wp-content\/uploads\/2017\/04\/software-sales-dashboard-in-javascript_.png\",\"contentUrl\":\"https:\/\/www.anychart.com\/blog\/wp-content\/uploads\/2017\/04\/software-sales-dashboard-in-javascript_.png\",\"width\":879,\"height\":514},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.anychart.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Name a Graph: Tips for Writing Great Chart Captions\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.anychart.com\/blog\/#website\",\"url\":\"https:\/\/www.anychart.com\/blog\/\",\"name\":\"AnyChart News\",\"description\":\"AnyChart JS Charts\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.anychart.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.anychart.com\/blog\/#\/schema\/person\/2470e26e58231357db6d9993ecd6461b\",\"name\":\"AnyChart Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.anychart.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/4faeb24a1b553a1b071b765bfad138c00441a955b3a631c7564624ceeafdf884?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/4faeb24a1b553a1b071b765bfad138c00441a955b3a631c7564624ceeafdf884?s=96&r=g\",\"caption\":\"AnyChart Team\"},\"sameAs\":[\"https:\/\/www.anychart.com\"],\"url\":\"https:\/\/www.anychart.com\/blog\/author\/andrey-khachaturov\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Name a Graph: Tips for Writing Great Chart Captions","description":"Charts are a great way to display data in a meaningful way. But if you don't have great chart captions, readers may interpret that information incorrectly.","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.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/","og_locale":"en_US","og_type":"article","og_title":"How to Name a Graph: Tips for Writing Great Chart Captions","og_description":"Charts are a great way to display data in a meaningful way. But if you don't have great chart captions, readers may interpret that information incorrectly.","og_url":"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/","og_site_name":"AnyChart News","article_publisher":"https:\/\/www.facebook.com\/AnyCharts","article_published_time":"2017-04-05T15:23:04+00:00","article_modified_time":"2017-09-11T11:57:50+00:00","og_image":[{"width":879,"height":514,"url":"https:\/\/www.anychart.com\/blog\/wp-content\/uploads\/2017\/04\/software-sales-dashboard-in-javascript_.png","type":"image\/png"}],"author":"AnyChart Team","twitter_card":"summary_large_image","twitter_creator":"@AnyChart","twitter_site":"@AnyChart","twitter_misc":{"Written by":"AnyChart Team","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/#article","isPartOf":{"@id":"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/"},"author":{"name":"AnyChart Team","@id":"https:\/\/www.anychart.com\/blog\/#\/schema\/person\/2470e26e58231357db6d9993ecd6461b"},"headline":"How to Name a Graph: Tips for Writing Great Chart Captions","datePublished":"2017-04-05T15:23:04+00:00","dateModified":"2017-09-11T11:57:50+00:00","mainEntityOfPage":{"@id":"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/"},"wordCount":1060,"commentCount":12,"image":{"@id":"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/#primaryimage"},"thumbnailUrl":"https:\/\/www.anychart.com\/blog\/wp-content\/uploads\/2017\/04\/software-sales-dashboard-in-javascript_.png","keywords":["bar chart","bar charts","Business Intelligence","chart captions","column charts","Dashboards","Data Visualization","Tips and tricks"],"articleSection":["AnyChart Charting Component","Business Intelligence","Tips and Tricks"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/","url":"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/","name":"How to Name a Graph: Tips for Writing Great Chart Captions","isPartOf":{"@id":"https:\/\/www.anychart.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/#primaryimage"},"image":{"@id":"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/#primaryimage"},"thumbnailUrl":"https:\/\/www.anychart.com\/blog\/wp-content\/uploads\/2017\/04\/software-sales-dashboard-in-javascript_.png","datePublished":"2017-04-05T15:23:04+00:00","dateModified":"2017-09-11T11:57:50+00:00","author":{"@id":"https:\/\/www.anychart.com\/blog\/#\/schema\/person\/2470e26e58231357db6d9993ecd6461b"},"description":"Charts are a great way to display data in a meaningful way. But if you don't have great chart captions, readers may interpret that information incorrectly.","breadcrumb":{"@id":"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/#primaryimage","url":"https:\/\/www.anychart.com\/blog\/wp-content\/uploads\/2017\/04\/software-sales-dashboard-in-javascript_.png","contentUrl":"https:\/\/www.anychart.com\/blog\/wp-content\/uploads\/2017\/04\/software-sales-dashboard-in-javascript_.png","width":879,"height":514},{"@type":"BreadcrumbList","@id":"https:\/\/www.anychart.com\/blog\/2017\/04\/05\/chart-captions-title-graph-tips\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.anychart.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Name a Graph: Tips for Writing Great Chart Captions"}]},{"@type":"WebSite","@id":"https:\/\/www.anychart.com\/blog\/#website","url":"https:\/\/www.anychart.com\/blog\/","name":"AnyChart News","description":"AnyChart JS Charts","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.anychart.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.anychart.com\/blog\/#\/schema\/person\/2470e26e58231357db6d9993ecd6461b","name":"AnyChart Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.anychart.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/4faeb24a1b553a1b071b765bfad138c00441a955b3a631c7564624ceeafdf884?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4faeb24a1b553a1b071b765bfad138c00441a955b3a631c7564624ceeafdf884?s=96&r=g","caption":"AnyChart Team"},"sameAs":["https:\/\/www.anychart.com"],"url":"https:\/\/www.anychart.com\/blog\/author\/andrey-khachaturov\/"}]}},"_links":{"self":[{"href":"https:\/\/www.anychart.com\/blog\/wp-json\/wp\/v2\/posts\/2991","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.anychart.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.anychart.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.anychart.com\/blog\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/www.anychart.com\/blog\/wp-json\/wp\/v2\/comments?post=2991"}],"version-history":[{"count":114,"href":"https:\/\/www.anychart.com\/blog\/wp-json\/wp\/v2\/posts\/2991\/revisions"}],"predecessor-version":[{"id":4519,"href":"https:\/\/www.anychart.com\/blog\/wp-json\/wp\/v2\/posts\/2991\/revisions\/4519"}],"wp:attachment":[{"href":"https:\/\/www.anychart.com\/blog\/wp-json\/wp\/v2\/media?parent=2991"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.anychart.com\/blog\/wp-json\/wp\/v2\/categories?post=2991"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.anychart.com\/blog\/wp-json\/wp\/v2\/tags?post=2991"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}