Highcharts column graph, how to hide bottom border? - highcharts

I'm struggling to find a way to hide the bottom border of the dashed column. Is there a way to do this?
Also, is there a way to make the dashed border look always the same on the corners? It's arbitrary at the moment, which doesn't look great.

Related

Align dashes in the corner of a CAShapeLayer with a dashed border

I’ve got a CAShapeLayer with rounded corners and a dashed border that display line dashes. However, the dashes are not aligned to the corners. Is there a way to do this?
Here’s a diagram showing the kind of pattern I want (with the arrow pointing to it):
Try adjusting the 'phase' via https://developer.apple.com/library/ios/documentation/uikit/reference/UIBezierPath_class/Reference/Reference.html#//apple_ref/occ/instm/UIBezierPath/setLineDash:count:phase:

How to make color bar above navigator in Highstock?

I have chart showing time data. I have two points back in time which I need to "mark" in the chart.
I currently indicate these two by plotlines, but would like to show bar, with let's say green and blue bars showing the timespans (for example -13days from now with blue and -90days -> -13days with red).
I would use plotBands, but I can't specify their height and do not want to have them all over the chart.
Is there some way? I saw something about translating pixels and drawing rectangle, but wasn't able to make it work. Also - I zoom a lot in this chart.
You can use Renderer and add custom shape. In other cases, please attach mockup of your goal.
http://api.highcharts.com/highstock#Renderer

Highcharts border around legend symbol

Is there a way to add a border to a highcharts legend symbol (in particular for bar or column charts). Notice how in this picture the border color of the bar doesn't match the border color of the legend symbol. I noticed that it's a current feature request, and the author seemed to have a workaround for border radius that involved modifying the highcharts js file. I'm not going to modify the highcharts library, but I'm willing to do a little hackery dynamically.

Shading areas in coreplot, with outlined line

Does anyone know how to achieve this in coreplot?
I can get the graph with the solid green and red lines, without the shading. And I can get the semi-transparent shading, without the solid green and red line. I cannot seem to get both. :)
You should be able to do this with only two plots, one for each color. Set both the dataLineStyle and areaFill for each plot. Be sure to set the areaBaseValue for each plot at or below the bottom of the plot so the fill extends all the way down.

Cropping sharp edges from behind a UIBezierPath rounded rectangle

I'm learning my way through UIBezierPaths by creating a table from scratch, and having individual cells filled with different colours.
This is a custom object I'm building which is contained in a subclassed UIView.
At the moment, I'm constructing this in this order:
'Cell' fill colours
Column lines
Row lines
Outer box (rounded rect)
As the picture suggests, I'm having trouble getting rid of the sharp corner of the cell fill outside the orange rounded rectangle.
Can anyone point me in the right direction to get rid of these?
Cheers! :)
At the beginning of your drawing code you should add the outer rounded rect path to the clipping path using its addClip method. That way nothing will get drawn that is outside this path.

Resources