Skip to content

Commit

Permalink
Minor change to last commit - Chart title change
Browse files Browse the repository at this point in the history
  • Loading branch information
danjasuw committed Mar 29, 2024
1 parent 011ffc3 commit c20b5c6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3185,7 +3185,14 @@ export class Internal_ShowPlot_PsmList_Etc_Block__Chromatogram_BasedOnPSMs_Compo
}
}

const chartTitle = "Chromatogram - " + reportedPeptideSequence + "<sup>" + this.props.selection_ReportedPeptide_OpenModMass_Charge.charge + "+</sup>" + openModMass_Display_For_ChartTitle
let chartTitle_Start = "Ion Current"

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


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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2513,8 +2513,14 @@ export class Internal_ShowPlot_FeatureDetection_ViewPage__Chromatogram_Component
}


let chartTitle_Start = "Ion Current"

const chartTitle = "Feature Chromatogram - m/z " + m_over_z_PersistentFeature.toFixed( 4 )
if ( chartCreate__IonCurrent__IonCount__Enum === ChartCreate__IonCurrent__IonCount__Enum.ION_COUNT ) {
chartTitle_Start = "Ion Count "
}


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"
Expand Down

0 comments on commit c20b5c6

Please sign in to comment.