Merged in bugfix/PMCORE-3404-A (pull request #8215)
PMCORE-3404 Approved-by: Rodrigo Quelca
This commit is contained in:
committed by
Julio Cesar Laura Avendaño
commit
410ff36463
@@ -79,6 +79,9 @@
|
|||||||
</h4>
|
</h4>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="v-search-info">
|
||||||
|
{{ $t("ID_SELECT_PROCESS_DRILL") }}
|
||||||
|
</div>
|
||||||
<apexchart
|
<apexchart
|
||||||
ref="LevelOneChart"
|
ref="LevelOneChart"
|
||||||
:width="width"
|
:width="width"
|
||||||
@@ -139,17 +142,11 @@ export default {
|
|||||||
type: "bar",
|
type: "bar",
|
||||||
id: "LevelOneChart",
|
id: "LevelOneChart",
|
||||||
toolbar: {
|
toolbar: {
|
||||||
show: false,
|
show: true,
|
||||||
},
|
},
|
||||||
events: {
|
events: {
|
||||||
mouseMove: function (event, chartContext, config) {
|
click: function (event, chartContext, config) {
|
||||||
if (
|
that.$refs.popover.$emit("close");
|
||||||
config.dataPointIndex != that.dataPointIndex &&
|
|
||||||
config.dataPointIndex != -1
|
|
||||||
) {
|
|
||||||
that.dataPointIndex = config.dataPointIndex;
|
|
||||||
that.$refs.popover.$emit("close");
|
|
||||||
}
|
|
||||||
if (config.dataPointIndex != -1) {
|
if (config.dataPointIndex != -1) {
|
||||||
that.currentSelection = that.totalCases[config.dataPointIndex];
|
that.currentSelection = that.totalCases[config.dataPointIndex];
|
||||||
that.onShowDrillDownOptions(
|
that.onShowDrillDownOptions(
|
||||||
@@ -169,7 +166,7 @@ export default {
|
|||||||
},
|
},
|
||||||
colors: ["#33b2df", "#546E7A", "#d4526e", "#13d8aa"],
|
colors: ["#33b2df", "#546E7A", "#d4526e", "#13d8aa"],
|
||||||
dataLabels: {
|
dataLabels: {
|
||||||
enabled: true,
|
enabled: false,
|
||||||
},
|
},
|
||||||
xaxis: {
|
xaxis: {
|
||||||
categories: [],
|
categories: [],
|
||||||
@@ -487,5 +484,13 @@ export default {
|
|||||||
.vp-flex1 {
|
.vp-flex1 {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.v-search-info {
|
||||||
|
font-size: 15px;
|
||||||
|
color: darkgray;
|
||||||
|
padding-left: 5%;
|
||||||
|
padding-top: 10px;
|
||||||
|
text-align: end;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
<style src="vue-multiselect/dist/vue-multiselect.min.css"></style>
|
<style src="vue-multiselect/dist/vue-multiselect.min.css"></style>
|
||||||
@@ -53311,4 +53311,10 @@ msgstr "Solid icons"
|
|||||||
# LABEL/ID_SOLID_ICONS_NOT_FOUND
|
# LABEL/ID_SOLID_ICONS_NOT_FOUND
|
||||||
#: LABEL/ID_SOLID_ICONS_NOT_FOUND
|
#: LABEL/ID_SOLID_ICONS_NOT_FOUND
|
||||||
msgid "Sorry, No Solid icons found!"
|
msgid "Sorry, No Solid icons found!"
|
||||||
msgstr "Sorry, No Solid icons found!"
|
msgstr "Sorry, No Solid icons found!"
|
||||||
|
|
||||||
|
# TRANSLATION
|
||||||
|
# LABEL/ID_SELECT_PROCESS_DRILL
|
||||||
|
#: LABEL/ID_SELECT_PROCESS_DRILL
|
||||||
|
msgid "Select a process to have the Drilling Down Options"
|
||||||
|
msgstr "Select a process to have the Drilling Down Options"
|
||||||
@@ -61053,6 +61053,7 @@ INSERT INTO TRANSLATION (TRN_CATEGORY,TRN_ID,TRN_LANG,TRN_VALUE,TRN_UPDATE_DATE
|
|||||||
( 'LABEL','ID_SELECT_PLUGIN_FILE','en','Select a plugin file','2014-09-18') ,
|
( 'LABEL','ID_SELECT_PLUGIN_FILE','en','Select a plugin file','2014-09-18') ,
|
||||||
( 'LABEL','ID_SELECT_PM_FILE','en','Select a .pmt file','2014-01-15') ,
|
( 'LABEL','ID_SELECT_PM_FILE','en','Select a .pmt file','2014-01-15') ,
|
||||||
( 'LABEL','ID_SELECT_PROCESS_FILE','en','Select a process file','2014-01-15') ,
|
( 'LABEL','ID_SELECT_PROCESS_FILE','en','Select a process file','2014-01-15') ,
|
||||||
|
( 'LABEL','ID_SELECT_PROCESS_DRILL','en','Select a process to have the Drilling Down Options','2021-10-13') ,
|
||||||
( 'LABEL','ID_SELECT_STATUS','en','Select status...','2014-01-15') ,
|
( 'LABEL','ID_SELECT_STATUS','en','Select status...','2014-01-15') ,
|
||||||
( 'LABEL','ID_SELECT_TABLE','en','Please select a table to export.','2014-01-15') ,
|
( 'LABEL','ID_SELECT_TABLE','en','Please select a table to export.','2014-01-15') ,
|
||||||
( 'LABEL','ID_SELECT_TEMPLATE_FILE','en','Select a template file','2014-01-15') ,
|
( 'LABEL','ID_SELECT_TEMPLATE_FILE','en','Select a template file','2014-01-15') ,
|
||||||
|
|||||||
Reference in New Issue
Block a user