<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>column chart</title><link>https://community.appian.com/discussions/f/general/26300/column-chart</link><description>If the column touches the highest value on y axis I want the Y axis to be increased by a value so as there is space above 
 For eg if the values are 5,10,15,20,25... and the column touches 25 I want the y-axis to be at 30</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: column chart</title><link>https://community.appian.com/thread/103222?ContentTypeID=1</link><pubDate>Thu, 20 Oct 2022 10:06:11 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:1143ebe0-b800-4c98-bced-8683dee93c2e</guid><dc:creator>Amaan Shekh</dc:creator><description>&lt;p&gt;and if ou want&amp;nbsp; to keep yMax at 25 and then you want it to increase according to the data then try this&amp;nbsp;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!data:{3,2,13,0,21,11},
  local!yMax:10,
  local!yIncrease:1,
  {
  a!columnChartField(
    label: &amp;quot;Column Chart&amp;quot;,
    categories: {&amp;quot;Category 1&amp;quot;, &amp;quot;Category 2&amp;quot;, &amp;quot;Category 3&amp;quot;},
    series: {
      a!chartSeries(label: &amp;quot;Chart Series&amp;quot;, data: local!data)
    },
    stacking: &amp;quot;NONE&amp;quot;,
    showLegend: true,
      showTooltips: true,
    labelPosition: &amp;quot;ABOVE&amp;quot;,
    colorScheme: &amp;quot;CLASSIC&amp;quot;,
    height: &amp;quot;MEDIUM&amp;quot;,
    xAxisStyle: &amp;quot;STANDARD&amp;quot;,
    yAxisStyle: &amp;quot;STANDARD&amp;quot;,
    yAxisMax: if(max(local!data)&amp;gt;=local!yMax,max(local!data)+local!yIncrease,local!yMax)
  )
}
)&lt;/pre&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: column chart</title><link>https://community.appian.com/thread/103220?ContentTypeID=1</link><pubDate>Thu, 20 Oct 2022 10:01:23 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:3d712627-7297-486c-b058-acd3b5e01b57</guid><dc:creator>Amaan Shekh</dc:creator><description>&lt;p&gt;try this&amp;nbsp;&lt;pre class="ui-code" data-mode="text"&gt;a!localVariables(
  local!data:{3,2,13,0,21,11},
  local!yIncrease:1,
  {
  a!columnChartField(
    label: &amp;quot;Column Chart&amp;quot;,
    categories: {&amp;quot;Category 1&amp;quot;, &amp;quot;Category 2&amp;quot;, &amp;quot;Category 3&amp;quot;},
    series: {
      a!chartSeries(label: &amp;quot;Chart Series&amp;quot;, data: local!data)
    },
    stacking: &amp;quot;NONE&amp;quot;,
    showLegend: true,
      showTooltips: true,
    labelPosition: &amp;quot;ABOVE&amp;quot;,
    colorScheme: &amp;quot;CLASSIC&amp;quot;,
    height: &amp;quot;MEDIUM&amp;quot;,
    xAxisStyle: &amp;quot;STANDARD&amp;quot;,
    yAxisStyle: &amp;quot;STANDARD&amp;quot;,
    yAxisMax: max(local!data)+local!yIncrease
  )
}
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>