display google line chart with single value

google-visualization, linechart

Solution

The best option is to change point size:

            var options = {'title': STR_BALANCE,
                           'width': 600,
                           'height': 300,
                           'pointSize': 3};

            var chart = new google.visualization.LineChart(document.getElementById('grafix'));
            chart.draw(dt, options);

Problem

I am using Google Line chart in my website. Using this chart I am creating daily/weekly/monthly reports. If it has only one value, it does not display the chart value. But I want to display that single value in Line Chart by default. Any ideas?

Original source