Welcome Guest Search | Active Topics |

Is it possible to show isolated point in line chart?
Junya
#1 Posted : Friday, November 13, 2015 5:45:56 AM(UTC)
Rank: Member

Groups: jQueryChart, Registered
Joined: 6/3/2013(UTC)
Posts: 13

Thanks: 1 times
Was thanked: 0 time(s) in 0 post(s)
Hello,

I want to show 'isolated' point in marker-less line chart.
(like '1/4/10' data in the following sample code)
'nullHandring:"break"' and 'markers:null' option are necessary in my situation,
so currently '1/4/10' data point is not shown without moving cursor over to the point.
Do you have any idea how to show isolated point always?

Thanks.

Code:

$('#LineChart').jqChart({
    title : {
        text : 'Line Chart'
    },
    axes : [
        {
            location : 'bottom',
            type : 'dateTime',
            labels : {
                stringFormat : 'm/d/yy'
            }
        }
    ],
    series : [
        {
            type : 'line',
            title : 'Series 1',
            nullHandling : 'break',
            markers : null,
            data : [
                [new Date(2010, 0, 1), 62],
                [new Date(2010, 0, 2), 60],
                [new Date(2010, 0, 3), null],
                [new Date(2010, 0, 4), 58],
                [new Date(2010, 0, 5), null],
                [new Date(2010, 0, 6), 60],
                [new Date(2010, 0, 7), 48]
            ]
        }
    ]
});       
Dragan
#2 Posted : Monday, November 23, 2015 10:14:28 AM(UTC)
Rank: Advanced Member

Groups: Administrators, DataVizJavaScript, jQueryChart, jQueryDV, MvcChart, Registered
Joined: 1/3/2011(UTC)
Posts: 483

Thanks: 0 times
Was thanked: 87 time(s) in 87 post(s)
Hi,

currently, jqChart doesn't support your requirement. You need to display some markers on the line chart.
Best Regards,
Dragan Matek
jqChart Inc.
Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

FlatEarth Theme by Jaben Cargman (Tiny Gecko)
Powered by YAF 1.9.4 | YAF © 2003-2010, Yet Another Forum.NET
This page was generated in 0.117 seconds.