import * as React from "react"; const STYLES_CONTAINER = { width: "100%", height: "auto", }; const STYLES_GRAPH = { viewBox: "0 0 600 600", // backgroundColor: "#f7f7f7", borderRadius: "4px", height: "600px", width: "600px", }; const STYLES_XLINE = { stroke: "#b2b2b2", srokeWidth: "1", fill: "none", }; const STYLES_LINE1 = { position: "relative", stroke: "#0047ff", fill: "none", }; const STYLES_LINE2 = { position: "relative", stroke: "#1b1f23", fill: "none", }; const STYLES_LINE3 = { position: "relative", stroke: "#ffc940", fill: "none", }; const STYLES_CAT1 = { fontSize: "0.75em", fill: "#0047ff", stroke: "none", }; const STYLES_CAT2 = { fontSize: "0.75em", fill: "#1b1f23", stroke: "none", }; const STYLES_CAT3 = { fontSize: "0.75em", fill: "#ffc940", stroke: "none", }; function HardChart() { return (
{/*Circle Plots*/} {/*Connected Line Plots*/} Category 1 Category 2 Category 3 {/* Alt Configuration - Show Straight Lines connecting first/last plots */} {/*X Axis Line*/} {/*X Axis Tick Marks*/} Sep 2017 Jun 2018 Mar 2019 Dec 2019 {/* Alt Configuration - Show Legend Category 1 Category 2 Category 3 */}
); } // const chartText = { // fontSize: "0.9em", // fill: "#b2b2b2", // stroke: "none", // }; export default HardChart;