Ok thankyou, I’ll deal with the issue of apple devices shortly.
Tell me is it possible for you to add some code to CanvasJS that detects if the series has an entry and if not it sets the width of the column to zero?
I’m talking about updating CanvasJS itself you could then add a method for people to select if they want to remove blank columns in the series
I really need the above column chart with no reserved spacing for series if there is no entry
Thanks
Also Would you have any js code snippet that could process the chart after or prior to render that could remove this reserved spacing from the chart?
Thanks
Ok, well this would be a handy feature to consider including in a future release, I need it so there are probably many others that would find it useful also.
Is there a way to individually enter a color value for each bar?
Also I am having issues with your chart displaying on apple devices like ipad iphone and mac pc, do you support these platforms?
Thanks
Ok so I have attached an image to make things clearer
I have four dataseries Entry1,2,3,4
See the gap between Entry1 and Entry3
Thats because Entry2 doesnt have any value for this date but the chart is showing a gap for it on every date that doesnt have a value. The more entries I put the more gaps are put for each one on each date???
How do I stop the gap for every date the dataseries doesnt have a datapoint.. so that only the entries with a datapoint for that particular date show only and no ‘spaces’ for dataseries without one??
Thanks
Sorry new to your naming its actually a column chart not a bar chart
thanks
Are there any methods to make an individual datapoint not visible or to set its width
Either of these would solve my issue
Looking through the docs I can only see methods for doing both to complete datasets
Thanks
Thankyou it is useful to see how you access the datapoints through javascript
However this is not resolving my issue.
The problem I have is I have an array of data that contains single dates for each entry.
When I make the chart it shows a blank width for each entry including the ones without an entry for that date
Eg
{
type: “column”,
name: “Item 1”,
dataPoints: [
{x:new Date(2017,02,07), y:7}
]
},
{
type: “column”,
name: “Item2”,
dataPoints: [
{x:new Date(2017,02,14), y:13}
]
},
{
type: “column”,
name: “Item3”,
dataPoints: [
{x:new Date(2017,02,21), y:8}
]
},
When I make the chart it on 2017,02,07 its shows the first item and two blank spaces for the other two.
For 2017,02,14 it shows a blank entry then second item them another blank entry
For 2017,02,21 it shows two blank entries and then third item
I want it only to show the item that contains the date entry in the the datapoint for that particular day and not blank entries for all other data that doesnt have a datapoint for that day.
Is that possible?
Thankyou again