Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: DX-2222 - [Design Rebuilt] Chart - RHCP #300

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions src/app/assets/icons/data-themes-chart-types/multisetBarChart.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import React from "react";

interface Props {
big?: boolean;
}

const Icon: React.FC<Props> = (props) => {
return (
<svg
width={props.big ? "74" : "48"}
height={props.big ? "74" : "48"}
viewBox="0 0 48 49"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M32.6059 41.762V20.5682H36.592V41.762H32.6059ZM41.5001 41.762H37.7256V20.0682V19.5682H37.592V13.1703H41.5001V41.762ZM23.0001 41.762H19.0529V15.762H23L23.0001 41.762ZM27.9083 41.762H24.0001V6.76196H27.9083V41.762ZM14.3164 41.762H10.5001V19.5787H14.3164V41.762ZM9.48569 25.3745V41.762H5.5V25.3745H9.48569Z"
stroke="#231D2C"
/>
</svg>
);
};

export default Icon;
25 changes: 25 additions & 0 deletions src/app/assets/icons/data-themes-chart-types/stackedBarChart.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import React from "react";

interface Props {
big?: boolean;
}

const Icon: React.FC<Props> = (props) => {
return (
<svg
width={props.big ? "74" : "48"}
height={props.big ? "74" : "48"}
viewBox="0 0 48 49"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M34.1837 13.262H42V22.3562H34.1837V13.262ZM34.1837 27.262V24.3562H42V27.262H34.1837ZM34.1837 41.262V29.262H42V41.262H34.1837ZM28.4082 18.262H20.5918V7.26196H28.4082V18.262ZM20.5918 20.262H28.4082V27.262H20.5918V20.262ZM20.5918 41.262V29.262H28.4082V41.262H20.5918ZM7 41.262V29.262H14.8163V41.262H7ZM14.8163 26.4504H7V20.262H14.8163V26.4504Z"
stroke="#231D2C"
stroke-width="2"
/>
</svg>
);
};

export default Icon;
26 changes: 13 additions & 13 deletions src/app/modules/chart-module/assets/areastackedPreview.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 12 additions & 16 deletions src/app/modules/chart-module/assets/barChartPreview.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 8 additions & 8 deletions src/app/modules/chart-module/assets/bigNumberPreview.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
56 changes: 28 additions & 28 deletions src/app/modules/chart-module/assets/bubbleChartPreview.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading