Flot bars outline - flot

I'm using a bar-chart to add a shaded range of expected values to my graph. The outline of the bars need to be removed to leave only the shaded region. Is this possible?
Thanking you in advance.

I found my own solution...
bars: {lineWidth: 0}

Related

Anychart Grid Alternating Colors

Is it possible to get alternating row/column colors in the grid?
see image of flash chart
Also, the grid lines in the old chart were exactly on the values, now the values lie exactly between the lines. Can this be changed?
flash chart
html5 chart
Thanks ahead.
Just to answer the question.
Alternating colors can be done by adding a palette to the chart grid for example:
chart.yMinorGrid().palette(["#FFF 0.25", "#000 0.25"]);
Or look at the example in the anychart playground:
https://playground.anychart.com/cO6ebTmF/0
The anychart flash setting tickmarks_placement="Center" is not supportet anymore as it does not meet the requirements of categorized charts.

Excel charts: Overlaying scatter plot with bar chart

I'm trying to create a combined scatter plot and "bar chart" - the bars extend the full height of the chart, but their width varies (I have a table with the start and finish points on the x-axis).
Here is a mock-up:
http://imgur.com/EHzv5YB
Do you think this is possible in Excel? I have found some links on how to overlay multiple plot types, but none involving variable width shaded areas as seen in the example.
Would really appreciate any help. Thanks!
I've written a tutorial showing how to Highlight Certain Time Periods in a Chart.

Change label text color in row chart

I am using dc.js row chart. Something exactly like the day of the week chart in the example of this page
Can someone please suggest how can I change the label colors from white to black.
I your CSS, use .dc-chart g.row text {fill: black;}.
Furthermore, for those who try with pie charts, the selector for labels is without the g.row. i.e. : .dc-chart text.pie-slice {fill: black;}

Change highlight point color in flot

I am using latest flot plugin 0.8 to plot some realtime data.I stuck at following issue
I highlighted point using plot.highlight(series, dataPoint);
Its perfectly working fine.But now I want to change highlight color of already plotted graph.
Is there any way to change highlight point color after plotting flot chart?
Any help would be highly appreciated.
Simply change the series 'highlightColor' option, i.e.
plot.getData()[0].highlightColor = "#f00";

How to add a vertical line in a horizontal bar chart?

I have to following chart with dates as the x-Axis:
How can a white, vertical line on top of the bars chart be displayed at today's date?
Here is detailed step-by-step guide: http://peltiertech.com/Excel/Charts/DummySeries.html#AddLine
My own sample file shared as an example: https://www.dropbox.com/s/8uyxqpiq2blv6t9/Charts_H-V_Lines.xlsx
Hope that's somehow helpful.

Resources