summaryrefslogtreecommitdiff
path: root/chart2/inc
diff options
context:
space:
mode:
authorvarshneydevansh <varshney.devansh614@gmail.com>2024-07-14 21:20:45 +0900
committerTomaž Vajngerl <quikee@gmail.com>2024-07-21 08:02:43 +0200
commit07ae0e5ada7cb595eb4815413a5bdd442c32a6ab (patch)
tree8a09c4364cd96f5668d4aa739e7786dfdb8df692 /chart2/inc
parentb92b1ca8c14979550ec962464ec8d782cdd69d82 (diff)
tdf#82716 Add initial implementation of the Histogram Chart
- Add the Histogram selection to the UI - Histogram bars showing with No Gap - Convert X and Y axis to group data into bins and frequency - Adjusted failing UI test (tdf138556) as a new chart type was added Change-Id: Id1f161adac943ead5e17c7fbb7e14c9ab7f1655e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167068 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'chart2/inc')
-rw-r--r--chart2/inc/bitmaps.hlst2
-rw-r--r--chart2/inc/strings.hrc2
2 files changed, 4 insertions, 0 deletions
diff --git a/chart2/inc/bitmaps.hlst b/chart2/inc/bitmaps.hlst
index 4c184dc09aeb..d5c7b75ff4c1 100644
--- a/chart2/inc/bitmaps.hlst
+++ b/chart2/inc/bitmaps.hlst
@@ -11,6 +11,7 @@
inline constexpr OUString BMP_TYPE_COLUMN = u"chart2/res/typecolumn_16.png"_ustr;
inline constexpr OUString BMP_TYPE_BAR = u"chart2/res/typebar_16.png"_ustr;
+inline constexpr OUString BMP_TYPE_HISTOGRAM = u"chart2/res/typehistogram_16.png"_ustr;
inline constexpr OUString BMP_TYPE_PIE = u"chart2/res/typepie_16.png"_ustr;
inline constexpr OUString BMP_TYPE_LINE = u"chart2/res/typepointline_16.png"_ustr;
inline constexpr OUString BMP_TYPE_XY = u"chart2/res/typexy_16.png"_ustr;
@@ -51,6 +52,7 @@ inline constexpr OUString BMP_COLUMNS_3D = u"chart2/res/columns3ddeep_52x60.png"
inline constexpr OUString BMP_COLUMNS_3D_1 = u"chart2/res/columns3d_52x60.png"_ustr;
inline constexpr OUString BMP_COLUMNS_3D_2 = u"chart2/res/columnstack3d_52x60.png"_ustr;
inline constexpr OUString BMP_COLUMNS_3D_3 = u"chart2/res/columnpercent3d_52x60.png"_ustr;
+inline constexpr OUString BMP_HISTOGRAM = u"chart2/res/histogram_52x60.png"_ustr;
inline constexpr OUString BMP_KEGELQ_3D_1 = u"chart2/res/conehori_52x60.png"_ustr;
inline constexpr OUString BMP_KEGELQ_3D_2 = u"chart2/res/conehoristack_52x60.png"_ustr;
inline constexpr OUString BMP_KEGELQ_3D_3 = u"chart2/res/conehoripercent_52x60.png"_ustr;
diff --git a/chart2/inc/strings.hrc b/chart2/inc/strings.hrc
index 8a6ec2fd2777..f671a404a6d5 100644
--- a/chart2/inc/strings.hrc
+++ b/chart2/inc/strings.hrc
@@ -158,6 +158,8 @@
#define STR_TYPE_COLUMN NC_("STR_TYPE_COLUMN", "Column")
#define STR_TYPE_BAR NC_("STR_TYPE_BAR", "Bar")
+#define STR_TYPE_HISTOGRAM NC_("STR_TYPE_HISTOGRAM", "Histogram")
+#define STR_HISTOGRAM NC_("STR_HISTOGRAM", "Histogram Chart")
#define STR_TYPE_AREA NC_("STR_TYPE_AREA", "Area")
#define STR_TYPE_PIE NC_("STR_TYPE_PIE", "Pie")
#define STR_PIE_EXPLODED NC_("STR_PIE_EXPLODED", "Exploded Pie Chart")