D3 Axes ggplot2 Style

by ramnathv

HTML

<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3-tip/0.6.3/d3-tip.min.js"></script>
<link rel="stylesheet" href="//rawgithub.com/Caged/d3-tip/master/examples/example-styles.css">
<div id="display"></div>

CSS

.line path {
    fill: none;
    stroke: black;
}
.axis path,
.axis line{
  fill: none;
  stroke: white;
}

.axis text {
    font-family: "Arial";
    font-size: 10px;
    fill: #aaa;
}

.minor path,
.minor line {
  stroke-opacity: 0.5;
}

.minor text{
  display: none;
}

svg {
  padding-left: 10px;
}

.d3-tip {
    font-family: "Arial";
    font-size: 14px;
    font-weight: normal;
    background: rgb(105, 9, 73);
    pointer-event: none !important;
}

CoffeeScript

tips =...