hi
the first one might be easier so ill start with that
1) is there anyway to get rid of the navigator?
2) in my chart i should be having 10 bars
ie, i have an array with 10 data objects
here is my code:
i have attached a text file with what console.log(wData) is
also i have a attached a screen shot of the graph
as you can see
the chart is only rendering the last object and not even correctly
because the open should be "0"
also just fyi
here is what "cats" looks like in the js console (which is correct)
Array[9]
0: "2009"1: "Workforce Headcount"2: "Direct Hire"3: "Acquisition"4: "Voluntary Termination"5: "Involuntary Termination"6: "Layoff"7: "Net Mobility"8: "2010"
pls help
thanks so much
the first one might be easier so ill start with that
1) is there anyway to get rid of the navigator?
2) in my chart i should be having 10 bars
ie, i have an array with 10 data objects
here is my code:
console.log(wData);
$J($chartD).kendoStockChart({
dataSource: wData,
series: [{
type:
"candlestick"
,
openField:
"open"
,
highField:
"high"
,
lowField:
"low"
,
closeField:
"close"
}],
categoryAxis:{
categories: cats,
type:
"category"
},
valueAxis: {
labels: {
format:
"N0"
}
}
});
i have attached a text file with what console.log(wData) is
also i have a attached a screen shot of the graph
as you can see
the chart is only rendering the last object and not even correctly
because the open should be "0"
also just fyi
here is what "cats" looks like in the js console (which is correct)
Array[9]
0: "2009"1: "Workforce Headcount"2: "Direct Hire"3: "Acquisition"4: "Voluntary Termination"5: "Involuntary Termination"6: "Layoff"7: "Net Mobility"8: "2010"
pls help
thanks so much