Skip to content

Commit

Permalink
Minor change to last commit - Chart title & Y Axis label change
Browse files Browse the repository at this point in the history
  • Loading branch information
danjasuw committed Mar 30, 2024
1 parent c20b5c6 commit d5a7bf2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3188,17 +3188,17 @@ export class Internal_ShowPlot_PsmList_Etc_Block__Chromatogram_BasedOnPSMs_Compo
let chartTitle_Start = "Ion Current"

if ( chartCreate__IonCurrent__IonCount__Enum === ChartCreate__IonCurrent__IonCount__Enum.ION_COUNT ) {
chartTitle_Start = "Ion Count "
chartTitle_Start = "Ions "
}


const chartTitle = chartTitle_Start + " Chromatogram - " + reportedPeptideSequence + "<sup>" + this.props.selection_ReportedPeptide_OpenModMass_Charge.charge + "+</sup>" + openModMass_Display_For_ChartTitle
const chart_X_Axis_Label = "Time (min)"

let chart_Y_Axis_Label = "Intensity"
let chart_Y_Axis_Label = "Ion Current"

if ( chartCreate__IonCurrent__IonCount__Enum === ChartCreate__IonCurrent__IonCount__Enum.ION_COUNT ) {
chart_Y_Axis_Label = " Ion Count"
chart_Y_Axis_Label = " Ions"
}

const showlegend_Local = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2516,17 +2516,17 @@ export class Internal_ShowPlot_FeatureDetection_ViewPage__Chromatogram_Component
let chartTitle_Start = "Ion Current"

if ( chartCreate__IonCurrent__IonCount__Enum === ChartCreate__IonCurrent__IonCount__Enum.ION_COUNT ) {
chartTitle_Start = "Ion Count "
chartTitle_Start = "Ions"
}


const chartTitle = chartTitle_Start + " Chromatogram - m/z " + m_over_z_PersistentFeature.toFixed( 4 )
const chart_X_Axis_Label ="Time (min)"

let chart_Y_Axis_Label = "Intensity"
let chart_Y_Axis_Label = "Ion Current"

if ( chartCreate__IonCurrent__IonCount__Enum === ChartCreate__IonCurrent__IonCount__Enum.ION_COUNT ) {
chart_Y_Axis_Label = " Ion Count"
chart_Y_Axis_Label = "Ions"
}

const showlegend_Local = true
Expand Down

0 comments on commit d5a7bf2

Please sign in to comment.