<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — Bug creating bar chart]]></title>
		<link>https://frontaccounting.com/punbb/viewtopic.php?id=9487</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=9487&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Bug creating bar chart.]]></description>
		<lastBuildDate>Sun, 26 Sep 2021 09:02:07 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Bug creating bar chart]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=40034#p40034</link>
			<description><![CDATA[<p>Hello,</p><p>I made a new graphics in the dashboard. It should be relatively simple and in my local it does work as expected.<br />My code is below:</p><div class="codebox"><pre><code>function display_sales_per_month()
{
    $pg = new graph();

    
    $this_year = date(&#039;Y&#039;);
    $title = _(&#039;Sales per month&#039;);
    $data = get_sales_in_year($this_year);
        $months = array(_(&#039;Jan&#039;), _(&#039;Feb&#039;), _(&#039;Mar&#039;),
            _(&#039;Apr&#039;), _(&#039;May&#039;), _(&#039;Jun&#039;),
            _(&#039;Jul&#039;), _(&#039;Aug&#039;), _(&#039;Sep&#039;),
            _(&#039;Oct&#039;), _(&#039;Nov&#039;), _(&#039;Dec&#039;),
        );
        $x_axis = array();
        $y_axis = array();
        foreach($data[&#039;monthly&#039;] as $k=&gt;$v){
            $x_axis[] = $months[$k-1];
            $y_axis[] = $v;
        }
        
        $pg-&gt;x = $x_axis;
        $pg-&gt;y = $y_axis;
    source_graphic($this_year, $title, _(&quot;&quot;), $pg, _(&quot;Sales per month&quot;), null, 1);
}</code></pre></div><p>It just display total invoice per month.<br />What I got when I upload is this:</p><p><a href="https://i.imgur.com/FEpxLtq.png">https://i.imgur.com/FEpxLtq.png</a></p><p>It got some weird string.</p>]]></description>
			<author><![CDATA[null@example.com (barbarian)]]></author>
			<pubDate>Sun, 26 Sep 2021 09:02:07 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=40034#p40034</guid>
		</item>
	</channel>
</rss>
