Since version 3.19 KOMA-Script provides the command \chapterlinesformat to define the format of chapters without prefix lines. You can redefine this command, \chapterformat and \raggedchapter to get something like

Code:
\documentclass{scrbook}
\usepackage{lmodern}
\usepackage{xcolor}
\renewcommand\raggedchapter{\raggedleft}
\renewcommand*{\chapterformat}{%
\fontsize{60}{68}\selectfont\textcolor{lightgray}{\thechapter}}
\makeatletter
\renewcommand\chapterlinesformat[3]{%
\ifstr{#1}{chapter}
{\raggedleft\makebox[0pt][r]{\smash{#2}}\makebox[0pt][r]{\parbox[t]{\textwidth}{\raggedchapter#3}}\par\nobreak}%
{\@hangfrom{#2}{#3}}% original definition for other commands with style=chapter
}
\makeatother
\usepackage{blindtext}
\begin{document}
\tableofcontents
\blinddocument
\chapter{Text elements}
In this chapter, some textual elements are shown, like figures,
tables, lists, equations, etc. Also, bananas.
\end{document}
Update because of a comment:
To place the chapter number in the margin I would use
\makeatletter
\renewcommand\chapterlinesformat[3]{%
\ifstr{#1}{chapter}
{\raggedright
\parbox[t]{\textwidth}{\raggedchapter#3}%
\makebox[0pt][l]{\smash{\enskip#2}}%
\par\nobreak
}%
{\@hangfrom{#2}{#3}}% original definition for other commands with style=chapter
}
\makeatother
\chapterlinesformat takes 3 arguments: the name of the sectioning level (#1), the formatted number (#2) and the formatted title (#3).
In the code segment chapter title (#3) takes the the whole text width. Its alignment is defined by \raggedchapter which is redefined in the example to \raggedleft. By default it would be \raggedsection which is defined as \raggedright. If the chapter title should be justified, then use \renewcommand\raggedchapter{}.
The chapter number (#2) is set in a box with width 0pt. So it is printed in the margin. \smash hides the height of the number. Therefore numbered and unnumbered (like TOC) chapter titles start at the same vertical position.
Example:
\documentclass{scrbook}
\usepackage{lmodern}
\usepackage{xcolor}
\renewcommand\raggedchapter{\raggedleft}
\renewcommand*{\chapterformat}{{%
\fontsize{60}{68}\selectfont\textcolor{lightgray}{\thechapter}}}
\makeatletter
\renewcommand\chapterlinesformat[3]{%
\ifstr{#1}{chapter}
{\raggedright
\parbox[t]{\textwidth}{\raggedchapter#3}%
\makebox[0pt][l]{\smash{\enskip#2}}%
\par\nobreak
}%
{\@hangfrom{#2}{#3}}% original definition for other commands with style=chapter
}
\makeatother
\usepackage{blindtext}
\begin{document}
\tableofcontents
\blinddocument
\chapter{In this chapter, some textual elements are shown, like figures,
tables, lists, equations, etc. Also, bananas.}
\end{document}