<?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>Query regarding Column Chart</title><link>https://community.appian.com/discussions/f/general/14929/query-regarding-column-chart</link><description>Hi 
 
 I am working on version 19.1. 
 I have a query regarding column chart. I have created a column chart. The code for this is: 
 
 
 The chart created is: 
 
 
 If you go through the chart created, except 3 months the column for each created for each</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Query regarding Column Chart</title><link>https://community.appian.com/thread/66819?ContentTypeID=1</link><pubDate>Thu, 23 May 2019 09:40:02 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:91ac9eac-2a7d-48f6-9801-6ae3929081d5</guid><dc:creator>komalc3</dc:creator><description>&lt;p&gt;Thanx &lt;a href="/members/stewart.burchell"&gt;Stewart Burchell&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;The line chart worked for me!!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Query regarding Column Chart</title><link>https://community.appian.com/thread/66807?ContentTypeID=1</link><pubDate>Wed, 22 May 2019 16:54:26 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:fdfa0840-94f9-41d7-b6e1-554d93b9e2be</guid><dc:creator>Mike Schmitt</dc:creator><description>&lt;p&gt;The Appian-side solution that springs to mind for me would be for them to adjust the column chart component to detect when a column is rendered at a height of zero pixels despite a nonzero value, and render it as a column 1 or 2 pixels high anyway (or, at least, have a clickable number tag).&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Query regarding Column Chart</title><link>https://community.appian.com/thread/66804?ContentTypeID=1</link><pubDate>Wed, 22 May 2019 14:18:16 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:825d0904-7010-4d22-90f6-60277da3bb54</guid><dc:creator>Stewart Burchell</dc:creator><description>&lt;p&gt;&lt;img alt=" " height="71" src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/11/pastedimage1558534717284v2.jpeg" width="112" /&gt;&lt;/p&gt;
&lt;p&gt;Don&amp;#39;t know what I was thinking of...you can, of course, swap out the column chart for a line chart:&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/11/pastedimage1558534678359v1.png" /&gt;&lt;/p&gt;
&lt;p&gt;Each node is then clickable.&lt;/p&gt;
&lt;p&gt;(personally I think a line chart indicates the trends between the categories rather than each category being a distinct set of data which is why i&amp;#39;m guessing you were shooting for a column chart. But, hey, this works better than my previous solution!)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Query regarding Column Chart</title><link>https://community.appian.com/thread/66803?ContentTypeID=1</link><pubDate>Wed, 22 May 2019 13:57:31 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:f63f5ca3-accf-45bc-9523-05437e5b7b1c</guid><dc:creator>Stewart Burchell</dc:creator><description>&lt;p&gt;This is a known issue with data that has a large variance and (as far as I know) there is no easy answer. One option is to catch in your expression that derives the data for the columns where values are less than, say, 1000 and artificially set them to 1000 so as to force the column to appear:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;a!chartSeries(
        label: &amp;quot;Months&amp;quot;,
        color:&amp;quot;AMBER&amp;quot;,
        /*data: index(local!monthDetails, &amp;quot;id&amp;quot;, null),*/
        data: a!forEach(
          items: fn!index(local!monthDetails,&amp;quot;id&amp;quot;),
          expression: if(fv!item&amp;lt;1000,1000,fv!item),
        ),
        links:a!forEach(
          items: local!monthDetails,
          expression: a!dynamicLink(
            value:index(fv!item, &amp;quot;month&amp;quot;, null),
            saveInto:{
              ri!monthSelected
            }
          )
        )
      )&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;which results in something like this:&lt;/p&gt;
&lt;p&gt;&lt;img src="/resized-image/__size/640x480/__key/communityserver-discussions-components-files/11/pastedimage1558533197462v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;...and then have some sort of annotation on the page to indicate that the actual values are LESS THAN 1000. Clicking on the column will then allow the user to see what the actual value is. It&amp;#39;s not great but it works.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve seen some chat about how to handle such wide-ranging values in charts in general (i.e. nothing to do with Appian) and there are a couple of options:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;have logarithmic scales (not intuitive to the average person but would be useful for mathematically-oriented applications)&lt;/li&gt;
&lt;li&gt;discontinuous axis - so, in your case, having a y-axis that shows 0-100, and then a non-linear break in the axis that picks up again at 10k. This would get my vote.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>