diff --git a/src/Calculator/Views/GraphingCalculator/GraphingCalculator.xaml b/src/Calculator/Views/GraphingCalculator/GraphingCalculator.xaml index 5b1c815..acb5fda 100644 --- a/src/Calculator/Views/GraphingCalculator/GraphingCalculator.xaml +++ b/src/Calculator/Views/GraphingCalculator/GraphingCalculator.xaml @@ -231,6 +231,13 @@ + @@ -368,8 +386,8 @@ VerticalAlignment="Top" Style="{ThemeResource GraphControlCommandPanel}" RequestedTheme="Light"> - - + @@ -459,8 +474,8 @@ + FontSize="{ThemeResource ToolTipContentThemeFontSize}" + AutomationProperties.LiveSetting="Polite"/> diff --git a/src/Calculator/Views/GraphingCalculator/GraphingCalculator.xaml.cpp b/src/Calculator/Views/GraphingCalculator/GraphingCalculator.xaml.cpp index cb76110..9c4ea69 100644 --- a/src/Calculator/Views/GraphingCalculator/GraphingCalculator.xaml.cpp +++ b/src/Calculator/Views/GraphingCalculator/GraphingCalculator.xaml.cpp @@ -152,7 +152,7 @@ void GraphingCalculator::OnTracePointChanged(Windows::Foundation::Point newPoint wstringstream traceValueString; // TODO: The below precision should ideally be dynamic based on the current scale of the graph. - traceValueString << "x=" << fixed << setprecision(1) << newPoint.X << ", y=" << fixed << setprecision(1) << newPoint.Y; + traceValueString << "(" << fixed << setprecision(1) << newPoint.X << ", " << fixed << setprecision(1) << newPoint.Y << ")"; TraceValue->Text = ref new String(traceValueString.str().c_str());