Fix types in QuestionGroupChart component
This commit is contained in:
@@ -10,9 +10,9 @@ import "./Chart.css";
|
||||
interface QuestionGroupChartProps {
|
||||
question: string;
|
||||
metadata?: CategoryMetadata;
|
||||
groupData: { response: string }[];
|
||||
responses: string[];
|
||||
xScale: d3.ScaleBand<string>;
|
||||
groupData: { response: number }[];
|
||||
responses: number[];
|
||||
xScale: d3.ScaleBand<number>;
|
||||
}
|
||||
|
||||
function makeDot(
|
||||
|
||||
Reference in New Issue
Block a user